Files
ontime/apps/client/src/features/control/message/MessageControl.module.scss
T
Fabian Posenau 5cb8020ab9 Timer/blinking and blackout buttons (#406)
*feat: timer blink

*feat: blackout

---------

Co-authored-by: Fabian Posenau <fabian@fphome.de>
Co-authored-by: cv <34649812+cpvalente@users.noreply.github.com>
2023-06-04 21:25:56 +02:00

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;
}