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/interactive/Layout.module.css

25 lines
340 B
CSS
Raw Normal View History

2021-04-21 13:08:54 +00:00
.Layout {
2021-04-26 16:36:41 +00:00
height: 100vh;
width: 100vw;
padding: 16px;
2021-04-21 13:08:54 +00:00
2021-04-26 16:36:41 +00:00
background-color: var(--bg-primary);
color: var(--fg-primary);
2021-04-21 13:08:54 +00:00
2021-04-26 16:36:41 +00:00
display: grid;
2021-04-21 13:08:54 +00:00
grid-template-areas:
"a b"
;
grid-template-columns: 250px 1fr;
grid-gap: 10px;
}
.LayoutSidebar {
grid-area: a;
}
.LayoutContent {
grid-area: b;
}