Files
ontime/apps/client/src/features/rundown/event-block/composite/EventBlockProgressBar.module.scss
T
Carlos Valente cb8ba776e2 Event editor continue (#722)
* refactor: remove info panel

* feat: editor panel

* wip: event info in drawer

* chore: update tests

* chore: add scss to processor
2024-01-22 16:23:11 +01:00

25 lines
355 B
SCSS

.progressBar {
height: 100%;
width: 0;
border-radius: 1px 0 0 1px;
transition: 1s linear;
transition-property: width;
&.play {
background-color: $playback-start;
}
&.overtime {
background-color: $playback-negative;
}
&.pause {
background-color: $ontime-paused;
}
&.roll {
background-color: $ontime-roll;
}
}