mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-03 06:28:01 +00:00
797a0edf57
* feat: add external endpoint * add external to messagecontrol --------- Co-authored-by: Carlos Valente <carlosvalente@pm.me>
30 lines
456 B
SCSS
30 lines
456 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;
|
|
}
|
|
}
|