mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-10 00:29:41 +00:00
cb8ba776e2
* refactor: remove info panel * feat: editor panel * wip: event info in drawer * chore: update tests * chore: add scss to processor
48 lines
627 B
SCSS
48 lines
627 B
SCSS
.operatorContainer {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
|
|
color: $ui-white;
|
|
}
|
|
|
|
.operatorEvents {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
padding-top: 0.25rem;
|
|
|
|
overflow: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.spacer {
|
|
min-height: 95vh;
|
|
}
|
|
|
|
.editPrompt {
|
|
position: fixed;
|
|
z-index: 1;
|
|
left: 50%;
|
|
transform: translate(-50%, 0);
|
|
text-align: center;
|
|
|
|
background: rgba(black, 0.6);
|
|
border-radius: 2px;
|
|
padding: 0.5em 2em;
|
|
color: gold;
|
|
|
|
opacity: 0;
|
|
transition-property: opacity;
|
|
transition-duration: 0.3s;
|
|
|
|
&.show {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.schedule {
|
|
display: flex;
|
|
gap: 0.25em;
|
|
}
|