mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-12 10:53:51 +00:00
61 lines
778 B
SCSS
61 lines
778 B
SCSS
@use "../../../../theme/_ontimeColours" as *;
|
|
|
|
.container {
|
|
max-width: 100%;
|
|
max-height: max(300px, 30vh);
|
|
overflow: scroll;
|
|
}
|
|
|
|
.scrollContainer {
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
.rundownPreview {
|
|
font-size: calc(1rem - 2px);
|
|
border-collapse: separate;
|
|
}
|
|
|
|
.header,
|
|
.body {
|
|
th {
|
|
font-weight: 400;
|
|
height: unset;
|
|
line-height: calc(1rem - 2px);
|
|
white-space: nowrap;
|
|
padding-left: 0.25rem;
|
|
padding-right: 1rem;
|
|
}
|
|
}
|
|
|
|
.header {
|
|
th {
|
|
font-weight: 200;
|
|
text-align: left;
|
|
}
|
|
|
|
tr {
|
|
word-wrap: unset;
|
|
}
|
|
}
|
|
|
|
.body {
|
|
tr:nth-child(odd) {
|
|
background-color: $gray-50;
|
|
}
|
|
|
|
td {
|
|
text-align: left;
|
|
vertical-align: top;
|
|
padding: 0 0.5em;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
.nowrap {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|