Files
ontime/apps/client/src/views/cuesheet/CuesheetPage.module.scss
T
Carlos Valente 8ad260d28a refactor: cuesheet design review
fix: parsing of custom fields for blocks
refactor: extract cuesheet settings
refactor: cuesheet actions
refactor: improve cuesheet performance on resizing
2025-07-03 08:46:21 +02:00

17 lines
324 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;
}