commit 12302b2a37332db03948c05beb714bcd66b65386 parent f5abd42687f0d7fb85ef0944c38fbbe57f17f108 Author: Hugo Soucy <hugo@soucy.cc> Date: Sat, 17 Oct 2020 22:58:14 -0400 Set to 100% the height of the layout Diffstat:
M | src/scss/modules/_layout.scss | | | 10 | +++------- |
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/src/scss/modules/_layout.scss b/src/scss/modules/_layout.scss @@ -1,14 +1,11 @@ -// -/* ↓ targets the intermediary wrapper */ +// Layout module .layout > * { display: flex; flex-wrap: wrap; - // margin: -0.5rem; } -.layout > * > * { - /* ↓ applies to both elements */ - // margin: 0.5rem; +.layout__inner { + height: 100%; } .layout__aside { @@ -18,7 +15,6 @@ } .layout__main { - /* ↓ grow from nothing */ background: aquamarine; flex-basis: 0; flex-grow: 999;