From e115edbc104f6e2bbdb7754f15433fa3a9629765 Mon Sep 17 00:00:00 2001 From: ppoffice Date: Thu, 28 May 2020 20:29:11 -0400 Subject: [PATCH] fix(layout): incorrect footer positioning on short pages --- include/style/base.styl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/style/base.styl b/include/style/base.styl index c94cbf0..960a2da 100644 --- a/include/style/base.styl +++ b/include/style/base.styl @@ -60,7 +60,16 @@ $colors = merge($colors, $custom-colors) @import bulma-stylus-root + '/layout/_all' html + height: 100% -webkit-text-size-adjust: 100% -moz-text-size-adjust: 100% -ms-text-size-adjust: 100% text-size-adjust: 100% + +body + min-height: 100% + display: flex + flex-direction: column + +body > .section + flex-grow: 1 \ No newline at end of file