mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 01:13:55 +00:00
25 lines
412 B
SCSS
25 lines
412 B
SCSS
@use '../../theme/v2Styles' as *;
|
|
@use '../../theme/ontimeColours' as *;
|
|
|
|
.tableWrapper {
|
|
width: 100%;
|
|
height: 100vh;
|
|
padding: 1rem;
|
|
|
|
display: grid;
|
|
grid-template-rows: auto auto 1fr;
|
|
grid-template-areas:
|
|
'header'
|
|
'settings'
|
|
'table';
|
|
gap: 1rem;
|
|
|
|
background-color: $gray-1300;
|
|
color: white;
|
|
|
|
& > * {
|
|
border: 1px solid $white-10;
|
|
border-radius: 3px;
|
|
}
|
|
}
|