mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 11:53:49 +00:00
20 lines
287 B
SCSS
20 lines
287 B
SCSS
.progressBar {
|
|
width: 100%;
|
|
height: 1rem;
|
|
position: relative;
|
|
|
|
background-color: $gray-1000;
|
|
}
|
|
|
|
.progress {
|
|
height: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 2;
|
|
|
|
background-color: $active-red;
|
|
transition-duration: 0.3s;
|
|
transition-property: width;
|
|
}
|