mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 07:53:54 +00:00
82ac8f1ba5
* fix: reset rundown on upload * style: facilitate reaching event id * fix: show rundown on half screens * style: prevent tab overflow * style: remove redundant information * style: improve editor in small screens * style: small tweaks to editor sizes
16 lines
335 B
SCSS
16 lines
335 B
SCSS
@use '../../../theme/viewerDefs' as *;
|
|
|
|
.timer {
|
|
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;
|
|
}
|
|
}
|