From d1d4813019848f844e2fa58671055dab1b51ef8f Mon Sep 17 00:00:00 2001 From: vista-man <524715@vistacollege.nl> Date: Wed, 19 Feb 2025 13:20:19 +0100 Subject: [PATCH] Update menu bar width for improved layout consistency --- website/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/style.css b/website/style.css index 044d53c..58408e1 100644 --- a/website/style.css +++ b/website/style.css @@ -9,7 +9,7 @@ body { /* Top bar menu */ .menu-bar { - width: 75%; + width: 75%; /* Use 75% of the screen width on the first page */ background-color: #ffffff; padding: 10px 0; display: flex; @@ -25,6 +25,7 @@ body { } .menu-bar.top { + width: 100%; /* Use 100% of the screen width when at the top */ position: fixed; /* Fix the top bar to the top */ top: 0; left: 0;