We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c68a6a commit 31aa70eCopy full SHA for 31aa70e
_layouts/default.html
@@ -2,8 +2,10 @@
2
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
{% include head.html %}
4
<body>
5
- {% include header.html %}
6
- {{ content }}
+ <div class="flex">
+ {% include header.html %}
7
+ {{ content }}
8
+ </div>
9
{% include footer.html %}
10
</body>
11
</html>
_sass/style.sass
@@ -6,6 +6,14 @@ $primary: $blue
@import "bulma/bulma"
+body
+ display: flex
+ min-height: 100vh
12
+ flex-direction: column
13
+
14
+.flex
15
+ flex: 1 0 auto
16
17
.container
18
max-width: 960px !important
19
width: 95%
0 commit comments