mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 08:23:55 +00:00
21 lines
422 B
SCSS
21 lines
422 B
SCSS
@use '../../../../theme/viewerDefs' as *;
|
|
|
|
.timer {
|
|
grid-area: timer;
|
|
white-space: nowrap;
|
|
max-width: 18.75rem;
|
|
min-width: 5em;
|
|
|
|
font-family: var(--font-family-override, $viewer-font-family);
|
|
color: var(--timer-color-override, $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;
|
|
}
|
|
}
|