mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 23:43:57 +00:00
47 lines
680 B
SCSS
47 lines
680 B
SCSS
.drawerFooter {
|
|
display: flex;
|
|
justify-content: end;
|
|
gap: $section-spacing;
|
|
|
|
button {
|
|
padding: 0 2em;
|
|
}
|
|
}
|
|
|
|
.label {
|
|
font-size: $inner-section-text-size;
|
|
color: $label-gray;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.section {
|
|
color: $ui-white;
|
|
font-size: 1rem;
|
|
|
|
&:not(:first-child) {
|
|
margin-top: 2rem;
|
|
}
|
|
}
|
|
|
|
.fieldSet {
|
|
display: flex;
|
|
padding: $section-spacing 0;
|
|
flex-direction: column;
|
|
gap: $element-spacing;
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
.title {
|
|
font-size: $inner-section-text-size;
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.description {
|
|
font-size: $inner-section-text-size;
|
|
display: block;
|
|
color: $modal-note-color;
|
|
}
|