mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-23 13:34:19 +00:00
24 lines
309 B
CSS
24 lines
309 B
CSS
|
.BodyHorizontalHalves {
|
||
|
display: grid;
|
||
|
grid-template-areas: "upper" "lower";
|
||
|
grid-template-rows: 1fr 1fr;
|
||
|
grid-gap: 10px;
|
||
|
}
|
||
|
|
||
|
.Upper {
|
||
|
grid-area: upper;
|
||
|
}
|
||
|
|
||
|
.Upper > * {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.Lower {
|
||
|
grid-area: lower;
|
||
|
}
|
||
|
|
||
|
.Lower > * {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|