mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-03 14:37:58 +00:00
29 lines
456 B
SCSS
29 lines
456 B
SCSS
.messageContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $section-spacing;
|
|
}
|
|
|
|
.buttonSection {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: $element-spacing;
|
|
margin-top: -0.5rem;
|
|
}
|
|
|
|
.singleAction {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $element-spacing;
|
|
margin-top: $element-inner-spacing;
|
|
}
|
|
|
|
.label {
|
|
font-size: $inner-section-text-size;
|
|
color: $label-gray;
|
|
|
|
&.active {
|
|
color: $action-text-color;
|
|
}
|
|
}
|