1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-17 21:26:22 -04:00
Files
Radarr/frontend/src/Movie/Index/ProgressBar/MovieIndexProgressBar.css
2022-05-28 17:46:44 -05:00

24 lines
470 B
CSS

.progress {
composes: container from '~Components/ProgressBar.css';
border-radius: 0;
background-color: #5b5b5b;
color: $white;
transition: width 200ms ease;
}
.progressRadius {
composes: container from '~Components/ProgressBar.css';
border-radius: 0 0 5px 5px;
background-color: #5b5b5b;
color: $white;
transition: width 200ms ease;
}
.progressBar {
composes: progressBar from '~Components/ProgressBar.css';
transition: width 200ms ease;
}