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 9104226 commit ccc8738Copy full SHA for ccc8738
src/styles/app.scss
@@ -12,6 +12,14 @@ $yellow: #FECD2F;
12
body {
13
font-family: $body-font;
14
background-color: white;
15
+
16
+ /* Ensure the footer is always at the bottom of the screen */
17
+ min-height: 100vh;
18
+ display: flex;
19
+ flex-direction: column;
20
+ & > #main-content {
21
+ flex: 1;
22
+ }
23
}
24
25
#ferris img {
templates/layout.hbs
@@ -48,7 +48,9 @@
48
</head>
49
<body>
50
{{> nav}}
51
- {{~> page}}
+ <div id="main-content">
52
+ {{~> page}}
53
+ </div>
54
{{> footer}}
55
</body>
56
</html>
0 commit comments