Docs: Fix broken layout on landing page (dark offline style)

The style was already fixed for the "light" offline style,
but the dark offline style was missed.

Amends d39c9d37ade8d74e534952e47061168be8904fc7

Task-number: QTBUG-129178
Fixes: QTBUG-131950
Pick-to: 6.8
Change-Id: I4f005cbe1945b8a973fb7bf77fb56b4d59d96b9c
Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Reviewed-by: Kai Köhne <kai.koehne@qt.io>
This commit is contained in:
Eike Ziller 2024-12-06 11:45:09 +01:00
parent 6dfd2c4935
commit d08b55867b

View File

@ -692,6 +692,9 @@ Landing page
vertical-align: top; vertical-align: top;
} }
.landing {
display: flex;
}
.landing h2 { .landing h2 {
background-color: transparent; background-color: transparent;
@ -706,19 +709,14 @@ Landing page
} }
.col-1 { .col-1 {
display: inline-block;
white-space: normal; white-space: normal;
width: 70%; width: 70%;
height: 100%;
float: left;
} }
.col-2 { .col-2 {
display: inline-block;
white-space: normal; white-space: normal;
width: 20%; width: 20%;
margin-left: 5%; margin-left: 5%;
position: relative;
top: -20px; top: -20px;
} }