From 346fb57e39f6dadb24bb638ebc15fa4322c13253 Mon Sep 17 00:00:00 2001 From: dvirlabs Date: Fri, 5 Dec 2025 05:03:58 +0200 Subject: [PATCH] Place the whole app to the center --- frontend/src/App.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/App.css b/frontend/src/App.css index 12a2536..d73fe26 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -26,6 +26,12 @@ body { color: var(--text-main); } +/* Center the app horizontally (keeps top alignment) */ +body { + display: flex; + justify-content: center; + align-items: flex-start; +} .app-root { min-height: 100vh; max-width: 1200px;