mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-12 19:03:47 +00:00
76 lines
1.0 KiB
SCSS
76 lines
1.0 KiB
SCSS
.eventEditor {
|
|
color: $label-gray;
|
|
max-height: 100%;
|
|
overflow-y: auto;
|
|
padding: 0.5rem;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.content {
|
|
padding-right: 4px;
|
|
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
.footer {
|
|
border-top: 1px solid $white-10;
|
|
padding-top: 1rem;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.timeSettings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.inputLabel {
|
|
display: block;
|
|
font-size: calc(1rem - 3px);
|
|
color: $label-gray;
|
|
margin-bottom: 0.25rem;
|
|
|
|
&.delayLabel {
|
|
color: $ontime-delay-text;
|
|
}
|
|
}
|
|
|
|
.switchLabel {
|
|
font-size: calc(1rem - 3px);
|
|
color: $label-gray;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
max-width: max-content;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.inline {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.splitTwo {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
column-gap: 1.5rem;
|
|
row-gap: 1rem;
|
|
}
|