mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
feat(styles): create global styles entry point and organize global styles feat(styles): implement base HTML element styles and utility classes for flexbox feat(styles): establish layout, position, spacing, and text utility classes feat(styles): introduce mixins for animations, cards, dialogs, flexbox, grid, and responsive design test(quick_guide): add component and metadata validation tests for quick_guide package test(ui_level6): implement metadata validation tests for ui_level6 package
20 lines
406 B
SCSS
20 lines
406 B
SCSS
// Text utility classes
|
|
|
|
.text-xs { font-size: var(--font-size-xs); }
|
|
.text-sm { font-size: var(--font-size-sm); }
|
|
.text-md { font-size: var(--font-size-md); }
|
|
.text-lg { font-size: var(--font-size-lg); }
|
|
.text-xl { font-size: var(--font-size-xl); }
|
|
|
|
.text-secondary {
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
.text-disabled {
|
|
color: var(--color-text-disabled);
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|