mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 16:33:51 +00:00
ac4257ece9
fix: parsing of custom fields for blocks refactor: extract cuesheet settings refactor: cuesheet actions refactor: improve cuesheet performance on resizing
23 lines
354 B
SCSS
23 lines
354 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: 0.5px;
|
|
max-width: 7em;
|
|
padding-left: 16px;
|
|
color: $ontime-delay-text
|
|
}
|
|
}
|
|
|
|
.delayOptions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|