From 114990779b474df4c8b1aa018696ce0871dc5b8b Mon Sep 17 00:00:00 2001 From: PierreDemailly Date: Wed, 29 Jan 2025 19:09:00 +0100 Subject: [PATCH] feat(wiki): set fixed width --- public/components/wiki/wiki.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/components/wiki/wiki.css b/public/components/wiki/wiki.css index 7e944f5b..12a15273 100644 --- a/public/components/wiki/wiki.css +++ b/public/components/wiki/wiki.css @@ -1,5 +1,5 @@ #documentation-root-element { - max-width: 1000px; + width: 1000px; height: 80%; position: absolute; display: flex; @@ -12,7 +12,7 @@ @media screen and (max-width: 1200px) { #documentation-root-element { - max-width: 600px; + width: 600px; } } @@ -41,4 +41,5 @@ border-bottom: 2px solid var(--primary); overflow: hidden; box-shadow: 2px 2px 30px rgba(20, 20, 20, 0.8); + width: 100%; }