From 8b745824930cf002805ce6186d7c8a13d18397c2 Mon Sep 17 00:00:00 2001 From: Techassi Date: Thu, 27 Mar 2025 10:35:58 +0100 Subject: [PATCH 1/3] chore: Set max-width to 1480px --- src/css/base.css | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/css/base.css b/src/css/base.css index 687ed94..a85b30f 100644 --- a/src/css/base.css +++ b/src/css/base.css @@ -122,9 +122,16 @@ body ::-webkit-scrollbar-thumb { display: flex; position: relative; width: 100%; - /* 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; + /* + We couldn't agree if we want this or not. + We tried 1920px, it was way to wide, so it got dropped back to 1480px, + which is should be a good middle ground between 1280px and 1920px. + + See + - https://github.com/stackabletech/documentation-ui/pull/78 + - ... + */ + max-width: 1480px; margin: 0 auto; } From 53bd843be0fcaaf4dec1cf4fc3cacd34d617f73b Mon Sep 17 00:00:00 2001 From: Techassi Date: Thu, 27 Mar 2025 10:37:27 +0100 Subject: [PATCH 2/3] chore: Add PR link to comment --- src/css/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css/base.css b/src/css/base.css index a85b30f..aa05b2b 100644 --- a/src/css/base.css +++ b/src/css/base.css @@ -129,7 +129,7 @@ body ::-webkit-scrollbar-thumb { See - https://github.com/stackabletech/documentation-ui/pull/78 - - ... + - https://github.com/stackabletech/documentation-ui/pull/132 */ max-width: 1480px; margin: 0 auto; From 85560a9d959482f020fa33706afed4b05f6dcae4 Mon Sep 17 00:00:00 2001 From: Techassi Date: Thu, 27 Mar 2025 10:38:44 +0100 Subject: [PATCH 3/3] chore: Remove trailing whitespace --- src/css/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css/base.css b/src/css/base.css index aa05b2b..a2c493e 100644 --- a/src/css/base.css +++ b/src/css/base.css @@ -122,7 +122,7 @@ body ::-webkit-scrollbar-thumb { display: flex; position: relative; width: 100%; - /* + /* We couldn't agree if we want this or not. We tried 1920px, it was way to wide, so it got dropped back to 1480px, which is should be a good middle ground between 1280px and 1920px.