Files
ontime/client/src/common/components/myProgressBar/MyProgressBar.module.scss
T
Carlos Valente 9b5d536378 Refact/project (#189)
* refactor: cleanup project entry point
* refactor: remove unused
* refactor: folder restructure
2022-08-03 23:20:23 +02:00

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;
}