mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-12 10:53:51 +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
55 lines
705 B
SCSS
55 lines
705 B
SCSS
@use '../../theme/v2Styles' as *;
|
|
|
|
.eventContainer {
|
|
flex: 1;
|
|
|
|
margin-top: 1em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0 4px;
|
|
overflow-y: scroll;
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
height: 100%;
|
|
}
|
|
|
|
.list {
|
|
overflow-x: clip;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.empty {
|
|
opacity: 0.3;
|
|
align-self: center;
|
|
}
|
|
|
|
.alignCenter {
|
|
text-align: center;
|
|
flex-direction: column;
|
|
|
|
.spaceTop {
|
|
margin-top: 1.5rem;
|
|
}
|
|
}
|
|
|
|
.spacer {
|
|
min-height: 50vh;
|
|
}
|
|
|
|
.entryWrapper {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.entryIndex {
|
|
text-align: right;
|
|
min-width: 2em;
|
|
color: $label-gray;
|
|
font-size: calc(1rem - 3px);
|
|
}
|
|
|
|
.entry {
|
|
flex: 1;
|
|
}
|