mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 23:43:57 +00:00
cb8ba776e2
* refactor: remove info panel * feat: editor panel * wip: event info in drawer * chore: update tests * chore: add scss to processor
23 lines
352 B
SCSS
23 lines
352 B
SCSS
$input-font-size: 15px;
|
|
|
|
.delayInput {
|
|
display: flex;
|
|
gap: $element-spacing;
|
|
align-items: center;
|
|
font-size: $text-body-size;
|
|
|
|
|
|
.inputField {
|
|
font-size: $input-font-size;
|
|
letter-spacing: 1px;
|
|
max-width: 7em;
|
|
padding-left: 16px;
|
|
color: $ontime-delay-text
|
|
}
|
|
}
|
|
|
|
.delayOptions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|