Files
metabuilder/fakemui/styles/atoms/_progress.scss
JohnDoe6345789 58a94d0489 feat(styles): add component-specific styles for TaskDetail, SearchDialog, and Documentation
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
2025-12-30 02:29:58 +00:00

35 lines
555 B
SCSS

// Progress atoms - flat selectors
.progress {
height: 4px;
background: var(--color-bg-elevated);
border-radius: var(--radius-full);
overflow: hidden;
}
.progress-bar {
height: 100%;
background: var(--color-primary);
transition: width 0.3s ease;
}
.progress--thin {
height: 3px;
}
.progress--thick {
height: 6px;
}
.progress--success .progress-bar {
background: var(--color-success);
}
.progress--warning .progress-bar {
background: var(--color-warning);
}
.progress--error .progress-bar {
background: var(--color-error);
}