diff options
-rw-r--r-- | static/base.css (renamed from static/global.css) | 6 | ||||
-rw-r--r-- | views/base.html | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/static/global.css b/static/base.css index 5625968..529dee9 100644 --- a/static/global.css +++ b/static/base.css @@ -17,9 +17,9 @@ html, body { * See: https://developer.mozilla.org/en-US/docs/Web/CSS/Layout_cookbook/Sticky_footers */ body { - min-height: 100vh; - display: grid; - grid-template-rows: auto 1fr auto; + min-height: 100vh; + display: grid; + grid-template-rows: auto 1fr auto; } .navbar { diff --git a/views/base.html b/views/base.html index 23219d2..be43d69 100644 --- a/views/base.html +++ b/views/base.html @@ -2,7 +2,7 @@ <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link href="/static/global.css" rel="stylesheet"> + <link href="/static/base.css" rel="stylesheet"> </head> <body> <header class="navbar"> |