mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 09:23:51 +00:00
d8f7d4bba6
* feat: add warning in view params when styles are overriden * refactor: style tweaks --------- Co-authored-by: Carlos Valente <carlosvalente@pm.me>
64 lines
956 B
SCSS
64 lines
956 B
SCSS
.drawerFooter {
|
|
display: flex;
|
|
justify-content: end;
|
|
gap: $section-spacing;
|
|
|
|
button {
|
|
padding: 0 2em;
|
|
}
|
|
}
|
|
|
|
.infoLabel {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: $element-spacing;
|
|
padding: 1rem;
|
|
margin-bottom: 1rem;
|
|
|
|
background-color: $gray-1100;
|
|
border-radius: 2px;
|
|
font-size: $inner-section-text-size;
|
|
|
|
svg {
|
|
font-size: 1.5rem;
|
|
color: $info-blue;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|