From 35501e1f939849a4f2ddd183997d25e95925dcbe Mon Sep 17 00:00:00 2001 From: Alexei Cazacov Date: Wed, 25 Sep 2024 15:11:35 +0300 Subject: [PATCH] Docs: Broken layout on landing page (offline style) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit fixes the broken layout. Wrapping the divs of col-1 (content) and col-2(sidebar) classes with a container with `display:flex` does the job. Fixes: QTBUG-129178 Change-Id: I6867b178e5a1acf6a4fbd5302a857e5f3ca0a62f Reviewed-by: Paul Wicking Reviewed-by: Kai Köhne (cherry picked from commit d39c9d37ade8d74e534952e47061168be8904fc7) Reviewed-by: Qt Cherry-pick Bot (cherry picked from commit 148f1a5a898bec38cea0593427ed48eb75a629c0) --- doc/global/template/style/offline.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/doc/global/template/style/offline.css b/doc/global/template/style/offline.css index 1e5f3dd1e38..b627372ed06 100644 --- a/doc/global/template/style/offline.css +++ b/doc/global/template/style/offline.css @@ -724,6 +724,9 @@ Landing page vertical-align: top; } +.landing { + display: flex; +} .landing h2 { background-color: transparent; @@ -738,19 +741,14 @@ Landing page } .col-1 { - display: inline-block; white-space: normal; width: 70%; - height: 100%; - float: left; } .col-2 { - display: inline-block; white-space: normal; width: 20%; margin-left: 5%; - position: relative; top: -20px; }