diff options
author | Linnnus <[email protected]> | 2024-03-20 18:20:42 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-03-20 18:20:42 +0100 |
commit | e40ce7849e97a1e0295fb07072d95041b60ec72a (patch) | |
tree | 9392bcc828dd943128c2dfe2536b0ea66dab9a50 /static | |
parent | 227bb3801b7ba58a2343c8067fd5937be1fb87aa (diff) |
Rename static/{global => base}.css
Now the name of the css file `static/XXX.css` matches the HTML/template
file in `views/XXX.html`.
Diffstat (limited to 'static')
-rw-r--r-- | static/base.css (renamed from static/global.css) | 6 |
1 files changed, 3 insertions, 3 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 { |