Files
web/packages/design-system/lib/components/Progress/progress.module.css
Erik Tiekstra 4de24e9f2a feat(BOOK-391): Added theme and logos for Bassin Seven
* chore: Updated border-radius variables after import change

Approved-by: Linus Flood
2026-01-22 07:03:25 +00:00

20 lines
392 B
CSS

.progress {
width: 100%;
}
.track {
height: var(--Space-x2);
border-radius: var(--Corner-Radius-md);
padding: var(--Space-x05);
background: var(--Surface-Secondary-Default);
position: relative;
overflow: hidden;
}
.fill {
height: 100%;
background: var(--Surface-Brand-Primary-1-OnSurface-Accent);
border-radius: var(--Corner-Radius-md);
transition: width 0.3s ease;
}