From faf0650a5ccc44dee532a0d6e2aca0a4726ad78f Mon Sep 17 00:00:00 2001 From: Rahix Date: Wed, 11 Mar 2026 21:34:50 +0100 Subject: [PATCH] [FAFO] Limit width of content to 100em on large screens We don't want to stretch the content too wide, this makes text harder to read. --- css/base_design.less | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/css/base_design.less b/css/base_design.less index 560e5eb..7c4f24b 100755 --- a/css/base_design.less +++ b/css/base_design.less @@ -24,6 +24,15 @@ html, body { font-weight: bold; } +body > div.dokuwiki { + position: relative; + margin: auto; + + @media @screen_min-xlg { + max-width: 100em; + } +} + .dokuwiki { .page ol li, .page ul li,