mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 18:33:53 +00:00
657cc22b44
* feat: parse cue * refactor: get delay from backend * feat: add cue to UI * refactor: remove deprecated delay logic * refactor: extract studio clock specific logic * refactor: extract utilities * refactor: fix issue with missing key * style: prevent cue overflow * style: prevent whitespace wrap * feat: add support for cues in integrations
38 lines
605 B
SCSS
38 lines
605 B
SCSS
@use '../../../theme/v2Styles' as *;
|
|
|
|
.quickAdd {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
align-items: center;
|
|
margin: 0.25rem 0;
|
|
font-size: $inner-section-text-size;
|
|
padding: 0 0.75rem;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.btnRow {
|
|
justify-self: center;
|
|
display: flex;
|
|
gap: max(0.5rem, 2rem);
|
|
|
|
.quickBtn {
|
|
font-weight: 400;
|
|
width: auto;
|
|
padding: 0 1rem;
|
|
}
|
|
}
|
|
|
|
.keyboard {
|
|
margin-left: 0.5rem;
|
|
padding: 0 0.25rem;
|
|
color: $label-gray;
|
|
border-radius: 2px;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.options {
|
|
display: flex;
|
|
flex-direction: column;
|
|
white-space: nowrap;
|
|
}
|