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
39 lines
723 B
SCSS
39 lines
723 B
SCSS
// Chip atoms - flat selectors
|
|
|
|
.chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: var(--spacing-xs);
|
|
padding: 2px 10px;
|
|
border-radius: var(--radius-full);
|
|
font-size: var(--font-size-xs);
|
|
font-weight: 500;
|
|
background: var(--color-bg-elevated);
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
.chip--primary {
|
|
background: var(--color-primary);
|
|
color: white;
|
|
}
|
|
|
|
.chip--success {
|
|
background: var(--color-success-bg);
|
|
color: var(--color-success);
|
|
}
|
|
|
|
.chip--warning {
|
|
background: var(--color-warning-bg);
|
|
color: var(--color-warning);
|
|
}
|
|
|
|
.chip--error {
|
|
background: var(--color-error-bg);
|
|
color: var(--color-error);
|
|
}
|
|
|
|
.chip--outlined {
|
|
background: transparent;
|
|
border: 1px solid currentColor;
|
|
}
|