From 98e8a048b44af0712e48a46a36e4f73a014ddc5b Mon Sep 17 00:00:00 2001 From: Pontus Dreij Date: Thu, 10 Oct 2024 14:34:01 +0200 Subject: [PATCH] fix(SW-592): Fix layout in mobile on select-hotel --- .../(public)/hotelreservation/select-hotel/page.module.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.module.css b/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.module.css index 3a8bcfe07..01739c271 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.module.css +++ b/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.module.css @@ -4,6 +4,7 @@ padding: var(--Spacing-x4) var(--Spacing-x4) 0 var(--Spacing-x4); background-color: var(--Scandic-Brand-Warm-White); min-height: 100dvh; + flex-direction: column; } .section { @@ -15,3 +16,9 @@ display: flex; padding: var(--Spacing-x2) var(--Spacing-x0); } + +@media (min-width: 768px) { + .main { + flex-direction: row; + } +}