From 7434c7d0ce306839e23f60d57b302a8ed4646bde Mon Sep 17 00:00:00 2001 From: Abdul Kareem Date: Mon, 23 Mar 2026 01:42:30 +0300 Subject: [PATCH] fix: keep footer at the bottom of the page --- styles.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 0ef616b..68b5b37 100644 --- a/styles.css +++ b/styles.css @@ -18,6 +18,9 @@ } body { + min-height: 100vh; + display: flex; + flex-direction: column; background: var(--bg); color: var(--text-main); line-height: 1.6; @@ -281,7 +284,7 @@ body { } footer { - margin-top: 24px; + margin-top: auto; background: #2b1b1b; color: #fff; text-align: center;