From 9681becfe9447c7a331e31f7764da3ab1b46f26b Mon Sep 17 00:00:00 2001 From: Liliana Sanfilippo <lsanfilippo@techfak.uni-bielefeld.de> Date: Thu, 14 Nov 2024 16:16:55 +0100 Subject: [PATCH] Caontainer max size 1600 now --- src/App/App.css | 4 +++- src/App/App.tsx | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/App/App.css b/src/App/App.css index 1bee98bb..88f3a7e2 100644 --- a/src/App/App.css +++ b/src/App/App.css @@ -67,7 +67,9 @@ html{ scroll-behavior: smooth; } - +.container-fluid{ + max-width: 1600px !important; +} .max-1240{ max-width: 1240px !important; } diff --git a/src/App/App.tsx b/src/App/App.tsx index 53e5d4c2..c05fe9c0 100644 --- a/src/App/App.tsx +++ b/src/App/App.tsx @@ -81,9 +81,9 @@ const App = () => { <> <Header /> {/* Page content */} - <div className="container-fluid"> + <div className="container-fluid" > <div className="row"> - <Sidebar /> + <Sidebar/> <div className="full-col-phone col-9 max-1240"> <Component /> <Villbuttonrow /> -- GitLab