mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-13 03:13:47 +00:00
18 lines
335 B
SCSS
18 lines
335 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: 3rem auto auto 1fr;
|
|
grid-template-areas:
|
|
'overview'
|
|
'progress'
|
|
'settings'
|
|
'table';
|
|
gap: 1rem;
|
|
color: $ui-white;
|
|
}
|