mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
29 lines
No EOL
384 B
CSS
29 lines
No EOL
384 B
CSS
.BodyHorizontalUpperGrow {
|
|
display: grid;
|
|
grid-template-areas: "upper" "lower" "error";
|
|
grid-template-rows: 1fr auto auto;
|
|
}
|
|
|
|
.Upper {
|
|
grid-area: upper;
|
|
}
|
|
|
|
.Upper > * {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.Lower {
|
|
grid-area: lower;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.Lower > * {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.Error {
|
|
grid-area: error;
|
|
margin-top: 10px;
|
|
} |