diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-22 19:40:45 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-22 19:50:51 +0300 |
commit | c962bbcf28a00b0de1498d6c7af7247c280bcbb6 (patch) | |
tree | 14a7842c275fed693c13fe82ac5580920f45567f /_includes/common/header.html | |
parent | footer: clean up whitespace in the include (diff) | |
download | jekyll-theme-c962bbcf28a00b0de1498d6c7af7247c280bcbb6.tar.gz jekyll-theme-c962bbcf28a00b0de1498d6c7af7247c280bcbb6.zip |
footer: switch implementation to flexbox
God, this is better.
Diffstat (limited to '_includes/common/header.html')
-rw-r--r-- | _includes/common/header.html | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/_includes/common/header.html b/_includes/common/header.html index 3765ae6..b43a592 100644 --- a/_includes/common/header.html +++ b/_includes/common/header.html @@ -75,11 +75,8 @@ {% endif %} </head> <body> - <div class="top-level-footer-wrapper"> + <div style="display: flex; flex-direction: column; min-height: 100vh;"> {% unless site.settings.navbar.hide or page.navbar.hide %} - <div class="footer-wrapper-collapse"> - {% include common/navbar.html %} - </div> + {% include common/navbar.html %} {% endunless %} - <div class="footer-wrapper-expand"> - <div class="container"> + <div class="container" style="flex: 1;"> |