mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 18:03:47 +00:00
46 lines
653 B
SCSS
46 lines
653 B
SCSS
@use '../editors//EditorMixin' as editor;
|
|
|
|
.rundownExport {
|
|
height: 100%;
|
|
flex: 1;
|
|
}
|
|
|
|
.rundown {
|
|
display: flex;
|
|
max-height: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.corner {
|
|
@include editor.corner;
|
|
display: inline;
|
|
z-index: 2;
|
|
}
|
|
|
|
.list {
|
|
@include editor.panel;
|
|
height: inherit;
|
|
padding-left: 0;
|
|
box-shadow: $box-shadow-right;
|
|
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
min-width: 38rem;
|
|
max-width: 45rem;
|
|
}
|
|
|
|
.side {
|
|
max-height: 100%;
|
|
max-width: 45rem;
|
|
margin: 2rem 0;
|
|
padding: 1rem;
|
|
padding-right: 0;
|
|
background-color: $gray-1325;
|
|
border-radius: 0 8px 8px 0;
|
|
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
min-width: 30rem;
|
|
max-width: 45rem;
|
|
}
|