From 4dffd647b313a2212fc34321692ac8e20e8a02ca Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Fri, 21 Feb 2025 09:43:51 +0100 Subject: [PATCH 1/2] fix: Don't set max-width on main container --- src/css/base.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/css/base.css b/src/css/base.css index d694722..2930a38 100644 --- a/src/css/base.css +++ b/src/css/base.css @@ -122,7 +122,8 @@ body ::-webkit-scrollbar-thumb { display: flex; position: relative; width: 100%; - max-width: 1280px; + /* I've payed the full screen, I'm going to use the full screen :) */ + /* max-width: 1280px; */ margin: 0 auto; } From 4097e6f30f64c9afab15e9bcc25b1ff24a75e83a Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Tue, 25 Feb 2025 15:43:17 +0100 Subject: [PATCH 2/2] chore: Enlargen max-width to 1920px --- src/css/base.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/css/base.css b/src/css/base.css index 2930a38..687ed94 100644 --- a/src/css/base.css +++ b/src/css/base.css @@ -122,8 +122,9 @@ body ::-webkit-scrollbar-thumb { display: flex; position: relative; width: 100%; - /* I've payed the full screen, I'm going to use the full screen :) */ - /* max-width: 1280px; */ + /* We couldn't agree if we want this or not. So we settled on trying 1920px for now */ + /* See https://github.com/stackabletech/documentation-ui/pull/78 for details */ + max-width: 1920px; margin: 0 auto; }