From f4e63bedcadfc4b939c7f9fa100d76b66e8ac93b Mon Sep 17 00:00:00 2001 From: Fredrik Thorsson Date: Wed, 21 Aug 2024 11:45:51 +0200 Subject: [PATCH] feat(SW-243): remove height on desktop --- .../BookingConfirmation/StaySection/staySection.module.css | 1 - .../SummarySection/summarySection.module.css | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/components/HotelReservation/BookingConfirmation/StaySection/staySection.module.css b/components/HotelReservation/BookingConfirmation/StaySection/staySection.module.css index 0cec5a570..1eae5c732 100644 --- a/components/HotelReservation/BookingConfirmation/StaySection/staySection.module.css +++ b/components/HotelReservation/BookingConfirmation/StaySection/staySection.module.css @@ -62,7 +62,6 @@ } .image { width: 100%; - height: 100%; max-height: 195px; } diff --git a/components/HotelReservation/BookingConfirmation/SummarySection/summarySection.module.css b/components/HotelReservation/BookingConfirmation/SummarySection/summarySection.module.css index 9f7cfce89..b65d92e76 100644 --- a/components/HotelReservation/BookingConfirmation/SummarySection/summarySection.module.css +++ b/components/HotelReservation/BookingConfirmation/SummarySection/summarySection.module.css @@ -5,6 +5,9 @@ .summary { display: flex; justify-content: space-between; - padding: var(--Spacing-x2) var(--Spacing-x0); border-bottom: 1px solid var(--Base-Border-Subtle); } + +.summary span { + padding: var(--Spacing-x2) var(--Spacing-x0); +}