ProzillaOS/src/components/utils/progress-bar/ProgressBar.module.css
2023-12-17 14:39:24 +01:00

20 lines
No EOL
304 B
CSS

.Container {
position: relative;
width: 15rem;
max-width: 100%;
min-height: 2rem;
max-height: 100%;
background-color: var(--background-color-d);
}
.Fill {
--fill: 0%;
position: absolute;
left: 0;
top: 0;
width: var(--fill);
min-width: 1px;
height: 100%;
background-color: var(--blue-a);
}