From 7f0eb0161b99f2ae6108b1f0c09f1173e5ce6cbe Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Sat, 4 Jul 2026 08:25:26 +0000 Subject: [PATCH] =?utf8?q?fix:=20Footer=20=C3=BCberlagert=20Artikelende=20?= =?utf8?q?nicht=20mehr?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Der absolut positionierte Footer (position: absolute; bottom: 0) war 125,5 px hoch, aber .content hatte nur padding-bottom: 7.1875em (115 px). Die fehlenden ~10 px wurden vom weißen Footer-Hintergrund überlagert und verbargen die letzte Zeile langer Artikel. padding-bottom auf 8.5em (136 px) erhöht, um einen ausreichenden Puffer gegenüber der tatsächlichen Footer-Höhe zu gewährleisten. Co-Authored-By: Claude Sonnet 4.6 --- public/css/screen.css | 2 +- src/styles/screen/layout.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/css/screen.css b/public/css/screen.css index f0b95601..297b45e3 100644 --- a/public/css/screen.css +++ b/public/css/screen.css @@ -1242,7 +1242,7 @@ } :root[data-layout=classic] .content { position: relative; - padding: 0 0 7.1875em 0; /** Unten: 115px (gemessene Gesamthöhe des Footers - mit Abstand und Margin) */ + padding: 0 0 8.5em 0; /** Unten: mind. 126px (Höhe des absolut positionierten Footers) + Puffer */ } :root[data-layout=classic] .menu .content, :root[data-layout=classic] .nomenu .content { diff --git a/src/styles/screen/layout.scss b/src/styles/screen/layout.scss index 93ef46fa..d4ade3bc 100644 --- a/src/styles/screen/layout.scss +++ b/src/styles/screen/layout.scss @@ -20,7 +20,7 @@ body .content { position: relative; - padding: 0 0 7.1875em 0; /** Unten: 115px (gemessene Gesamthöhe des Footers - mit Abstand und Margin) */ + padding: 0 0 8.5em 0; /** Unten: mind. 126px (Höhe des absolut positionierten Footers) + Puffer */ } .menu .content, .nomenu .content -- 2.39.5