From 5024c0b39e99391525380e3f93ed348d979567e2 Mon Sep 17 00:00:00 2001 From: Supreme2580 Date: Sat, 8 Feb 2025 15:33:44 +0100 Subject: [PATCH] Fix: added a 1440px constraint on the wrapperScreen style of home.module.css --- styles/Home.module.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles/Home.module.css b/styles/Home.module.css index 3a5a6331..265cca24 100644 --- a/styles/Home.module.css +++ b/styles/Home.module.css @@ -3,12 +3,16 @@ position: relative; margin-top: 12vh; overflow: auto; + display: flex; + justify-content: center; } .wrapperScreen { display: inline-flex; flex-direction: column; width: 100%; + max-width: 1440px; + margin: 0 auto; justify-content: center; height: calc(100% - 12vh); }