mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 01:13:55 +00:00
33 lines
492 B
SCSS
33 lines
492 B
SCSS
.statusBar {
|
|
position: sticky;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: $zindex-floating;
|
|
background-color: $gray-1350;
|
|
}
|
|
|
|
.timers {
|
|
padding-block: 0.75rem 0.5rem;
|
|
padding-inline: 1rem 0;
|
|
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
grid-template-areas: '. timers clock';
|
|
}
|
|
|
|
.runningTimer {
|
|
grid-area: timers;
|
|
justify-self: center;
|
|
}
|
|
|
|
.timeNow {
|
|
grid-area: clock;
|
|
justify-self: right;
|
|
}
|
|
|
|
.progressOverride {
|
|
grid-area: bar;
|
|
height: 1rem;
|
|
--progress-bar-br: 0;
|
|
}
|