From 8b7c7ac9ea31803205a218be16fa8b3e80324745 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20K=C3=B6the?= Date: Sun, 31 May 2026 15:55:52 +0200 Subject: [PATCH] fix: left-align GitHub Link Update .topbar in website/app/globals.css to use justify-content: flex-start instead of flex-end so the fixed topbar's children align to the left/start of the container. --- website/app/globals.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/app/globals.css b/website/app/globals.css index 8086f8b..722754d 100644 --- a/website/app/globals.css +++ b/website/app/globals.css @@ -84,7 +84,7 @@ button:disabled { .topbar { align-items: center; display: flex; - justify-content: flex-end; + justify-content: flex-start; left: 0; padding: 24px; position: fixed;