From fa6607f86ba5847d3e2cb862a3778c45decdf70b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Fri, 7 Nov 2025 18:30:17 +0100 Subject: [PATCH] Extend the final section of a page to avoid white space --- src/styles/app.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/styles/app.scss b/src/styles/app.scss index 1cac7d0a..5265df2c 100644 --- a/src/styles/app.scss +++ b/src/styles/app.scss @@ -34,6 +34,12 @@ body { flex-direction: column; & > main { flex: 1; + display: flex; + flex-direction: column; + + & > section:last-child { + flex: 1; + } } }