Files
ontime/apps/client/src/features/cuesheet/CuesheetWrapper.module.scss
T
2024-05-20 19:29:57 +02:00

16 lines
277 B
SCSS

.tableWrapper {
background-color: $ui-black;
width: 100%;
height: 100vh;
padding: 1rem 0.5rem;
display: grid;
grid-template-rows: 3rem auto 1fr;
grid-template-areas:
'overview'
'settings'
'table';
gap: 1rem;
color: $ui-white;
}