mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 18:03:47 +00:00
58 lines
996 B
SCSS
58 lines
996 B
SCSS
.rundownExport {
|
|
height: 100%;
|
|
flex: 1 1 0; /* flex-grow: 1, flex-shrink: 1, flex-basis: 0 */
|
|
min-width: 0;
|
|
|
|
&.extracted {
|
|
.list {
|
|
flex: 1;
|
|
max-width: none;
|
|
}
|
|
.side {
|
|
flex: 1;
|
|
max-width: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.rundown {
|
|
display: flex;
|
|
max-height: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.rundownRoot {
|
|
height: calc(100% - 1rem);
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
}
|
|
|
|
.list {
|
|
display: flex;
|
|
height: inherit;
|
|
padding-inline: 0;
|
|
padding-bottom: 0;
|
|
box-shadow: $box-shadow-right;
|
|
|
|
flex: 1 1 0; /* flex-grow: 1, flex-shrink: 1, flex-basis: 0 */
|
|
min-width: 38rem;
|
|
max-width: none;
|
|
width: 0;
|
|
}
|
|
|
|
.side {
|
|
max-height: 100%;
|
|
margin: 0.5rem 0;
|
|
padding: 1rem;
|
|
padding-right: 0;
|
|
background-color: $gray-1325;
|
|
border-radius: 0 8px 8px 0;
|
|
|
|
flex: 1 1 0; /* flex-grow: 1, flex-shrink: 1, flex-basis: 0 */
|
|
// width is locked to swatch picker elements
|
|
min-width: calc(15 * 2rem + 13 * 0.5rem);
|
|
width: 0;
|
|
}
|