From cd21cd87dad82a59f01e193667a0455ac482fc71 Mon Sep 17 00:00:00 2001 From: matj1 Date: Fri, 9 Aug 2024 12:22:26 +0200 Subject: [PATCH] [spec] Tune width in CSS (#1777) --- document/core/static/custom.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/document/core/static/custom.css b/document/core/static/custom.css index 33bb863d42..950236af0f 100644 --- a/document/core/static/custom.css +++ b/document/core/static/custom.css @@ -15,10 +15,16 @@ body { font-size: 15px; } -div.document { width: 1000px; } +div.document { + width: unset; + max-width: 1000px; +} div.bodywrapper { margin: 0 0 0 200px; } div.body { padding: 0 10px 0 10px; } -div.footer { width: 1000px; } +div.footer { + width: unset; + max-width: 1000px; +} div.body h1 { font-size: 200%; } div.body h2 { font-size: 150%; }