mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-23 05:24:18 +00:00
22 lines
248 B
CSS
22 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;
|
||
|
}
|