1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-23 05:24:18 +00:00
pds-2021-g2-nest/code/frontend/src/components/Layout.module.css
2021-04-21 15:08:54 +02:00

21 lines
248 B
CSS

.Layout {
width: 100%;
height: 100%;
display: grid;
grid-template-areas:
"a b"
;
grid-template-columns: 250px 1fr;
grid-gap: 10px;
}
.LayoutSidebar {
grid-area: a;
}
.LayoutContent {
grid-area: b;
}