mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 03:43:50 +00:00
832c060940
* config(sentry): instrumentation only in production * chore: upgrade deps * refactor: simplify and convert to ts * refactor: composition and styles * chore: remove deprecated deps * ux: close menu on click outside * style: small tweaks and clarifications * refactor: retire PiP view * ux: small tweaks * style: cleanup deprecated styles * chore: remove unused * refactor: remove usages of deprecated fields and improve null timer presentation * refactor: improve composition of countdown * style: cleanup overridable styles * ux: show event overtime status * style: correct logic in paused timers
22 lines
424 B
SCSS
22 lines
424 B
SCSS
@use '../../../theme/viewerDefs' as *;
|
|
|
|
.timer {
|
|
font-family: var(--font-family-override, $viewer-font-family);
|
|
color: var(--timer-color-override, $timer-color);
|
|
font-size: 20vw;
|
|
line-height: 0.9em;
|
|
text-align: center;
|
|
letter-spacing: 0.05em;
|
|
font-weight: 600;
|
|
|
|
&--small {
|
|
font-size: 3.75em;
|
|
text-align: center;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
&--finished {
|
|
color: $timer-finished-color;
|
|
}
|
|
}
|