aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2019-07-28 16:34:05 -0400
committerBen Burwell <ben@benburwell.com>2019-07-28 16:34:15 -0400
commit46dd084240d867dfd38ac86596eb00a511a0a2f7 (patch)
treec476940cec2cf4bb2c17e4d4a1d1d80f69cc4316
parent4f48801ef1ee4d3f5d199cde113748ecae64eddd (diff)
Don't overlap footer
-rw-r--r--static/ihatecss.css16
1 files changed, 9 insertions, 7 deletions
diff --git a/static/ihatecss.css b/static/ihatecss.css
index 3e48ac3..6ef2b35 100644
--- a/static/ihatecss.css
+++ b/static/ihatecss.css
@@ -1,8 +1,10 @@
+body {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+}
+
#footer {
- position:fixed;
- left:0px;
- bottom:0px;
- height:30px;
- width:100%;
- background:#999;
-} \ No newline at end of file
+ margin-top: auto;
+ background:#999;
+}