From 7dba849c129ee31ab57c577a490477aa7f6e6c2b Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Sun, 12 Apr 2026 00:37:28 -0400 Subject: [PATCH] Fix footer appearing mid-page when content is minimal body lacked display:flex + flex-direction:column, so the existing flex:1 on .lt-main had no effect. Error pages (404, 403) and any page with little content showed the footer immediately after content rather than pinned to the viewport bottom. Co-Authored-By: Claude Sonnet 4.6 --- assets/css/base.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/css/base.css b/assets/css/base.css index 82c914a..050440e 100644 --- a/assets/css/base.css +++ b/assets/css/base.css @@ -217,6 +217,8 @@ body { min-height: 100vh; overflow-x: hidden; position: relative; + display: flex; + flex-direction: column; } a {