1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/Layout.module.css

24 lines
335 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:
2021-05-11 14:37:15 +00:00
"a b";
2021-04-21 13:08:54 +00:00
grid-template-columns: 250px 1fr;
grid-gap: 10px;
}
.LayoutSidebar {
grid-area: a;
}
.LayoutContent {
grid-area: b;
}