mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 03:43:50 +00:00
0e6d6cd416
* refactor: allow secondary rundowns * ui: move dropdown * feat: follow loaded * ui: background edit warning ui: fix disable radio button * feat(ui): add loaded sufix in the rundown list * feat(ui): add direct link to background edit from rundown manager * fix: better fallback * fix: default to is isCurrentRundown for nav bar colour * chore: rename navigate to cuesheet --------- Co-authored-by: alex-arc <ac@omnivox.dk>
21 lines
365 B
SCSS
21 lines
365 B
SCSS
.tableWrapper {
|
|
background-color: $ui-black;
|
|
width: 100%;
|
|
height: 100vh;
|
|
padding-inline: 0.5rem;
|
|
padding-block: 0.5rem 1rem;
|
|
|
|
display: grid;
|
|
grid-template-rows: 3.5rem auto auto 1fr;
|
|
grid-template-areas:
|
|
'overview'
|
|
'progress'
|
|
'settings'
|
|
'table';
|
|
color: $ui-white;
|
|
}
|
|
|
|
.rundownSelect {
|
|
min-width: min(20rem, calc(100vw - 6rem));
|
|
}
|