diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.module.css b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.module.css index 800ffe8f9..9f8df3025 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.module.css +++ b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.module.css @@ -9,17 +9,13 @@ margin: 0 auto; } -.section { +.sideBar { display: flex; flex-direction: column; + max-width: 340px; } .link { - display: flex; - padding: var(--Spacing-x2) var(--Spacing-x0); -} - -.mapContainer { display: none; } @@ -34,11 +30,27 @@ } @media (min-width: 768px) { + .link { + display: flex; + padding-bottom: var(--Spacing-x6); + } .mapContainer { - display: block; + display: flex; + flex-direction: column; + background: var(--Base-Surface-Primary-light-Normal); + border-radius: var(--Corner-radius-Medium); + border: 1px solid var(--Base-Border-Subtle); + } + .mapLinkText { + display: flex; + align-items: center; + justify-content: center; + gap: var(--Spacing-x-half); + padding: var(--Spacing-x-one-and-half) var(--Spacing-x0); } .main { flex-direction: row; + gap: var(--Spacing-x5); } .buttonContainer { display: none; diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx index 29d16df1a..843accbd3 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx @@ -62,9 +62,14 @@ export default async function SelectHotelPage({ return (
-
-
- +
+ +
- - - {intl.formatMessage({ id: "Show map" })} - - -
+
+ {intl.formatMessage({ id: "Show map" })} + +
+
+ -
+
)