mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 07:53:54 +00:00
24 lines
369 B
SCSS
24 lines
369 B
SCSS
@use '../../../../theme/viewerDefs' as *;
|
|
|
|
.timer {
|
|
grid-area: timer;
|
|
white-space: nowrap;
|
|
max-width: 18.75rem;
|
|
min-width: 5em;
|
|
|
|
color: $timer-color;
|
|
line-height: 0.9em;
|
|
text-align: center;
|
|
letter-spacing: 0.1em;
|
|
font-weight: 600;
|
|
font-size: 3.5rem;
|
|
|
|
&.finished {
|
|
color: $timer-finished-color;
|
|
}
|
|
|
|
&.muted {
|
|
color: $muted-gray;
|
|
}
|
|
}
|