mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 16:03:52 +00:00
9b5d536378
* refactor: cleanup project entry point * refactor: remove unused * refactor: folder restructure
25 lines
371 B
SCSS
25 lines
371 B
SCSS
@use '../../../theme/main' as *;
|
|
|
|
.progress,
|
|
.progressCountdown {
|
|
height: 2vh;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.progress {
|
|
background-color: $bg-gray-900;
|
|
}
|
|
|
|
.progressCountdown {
|
|
background-color: $ontime-pink;
|
|
}
|
|
|
|
.progressBar {
|
|
width: 100%;
|
|
height: 2vh;
|
|
background-color: $title-white;
|
|
border-radius: 4px;
|
|
transition: 1s linear;
|
|
transition-property: width;
|
|
}
|