mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 08:23:55 +00:00
93fb48ea1c
* feat: operator view * chore: smoke test operator * refactor: small improvements from deepsource --------- Co-authored-by: arihanv <arihanvaranasi@gmail.com> Co-authored-by: arihanv <63890951+arihanv@users.noreply.github.com>
52 lines
822 B
SCSS
52 lines
822 B
SCSS
@use '../../../theme/v2Styles' as *;
|
|
@use '../../../theme/ontimeColours' as *;
|
|
|
|
.drawerContent {
|
|
background-color: $gray-1250;
|
|
}
|
|
|
|
.drawerHeader {
|
|
@extend .drawerContent;
|
|
color: $section-white;
|
|
}
|
|
|
|
.drawerFooter {
|
|
@extend .drawerContent;
|
|
display: flex;
|
|
justify-content: start;
|
|
gap: $element-spacing;
|
|
|
|
button[type='reset'] {
|
|
padding: 0 2em;
|
|
margin-right: auto;
|
|
}
|
|
|
|
button[type='submit'] {
|
|
padding: 0 2em;
|
|
}
|
|
}
|
|
|
|
.label {
|
|
font-size: $inner-section-text-size;
|
|
color: $label-gray;
|
|
}
|
|
|
|
.columnSection {
|
|
display: flex;
|
|
padding: $element-spacing;
|
|
flex-direction: column;
|
|
gap: $element-inner-spacing;
|
|
}
|
|
|
|
.title {
|
|
font-size: $inner-section-text-size;
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.description {
|
|
font-size: $inner-section-text-size;
|
|
display: block;
|
|
color: $modal-note-color;
|
|
}
|