mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-04 15:08:01 +00:00
5cb8020ab9
*feat: timer blink *feat: blackout --------- Co-authored-by: Fabian Posenau <fabian@fphome.de> Co-authored-by: cv <34649812+cpvalente@users.noreply.github.com>
34 lines
501 B
SCSS
34 lines
501 B
SCSS
@use '../../../theme/v2Styles' as *;
|
|
|
|
.messageContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $section-spacing;
|
|
}
|
|
|
|
.onAirSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $element-spacing;
|
|
}
|
|
|
|
.buttonSection {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: $element-spacing;
|
|
margin-top: -0.5rem;
|
|
}
|
|
|
|
.label {
|
|
font-size: $inner-section-text-size;
|
|
color: $label-gray;
|
|
|
|
&.active {
|
|
color: $action-text-color;
|
|
}
|
|
}
|
|
|
|
.padTop {
|
|
margin-top: $section-spacing;
|
|
}
|