From 13c962712c4079b4aa8c5394e9d1055af63d5993 Mon Sep 17 00:00:00 2001 From: Fredrik Thorsson Date: Fri, 20 Sep 2024 11:30:48 +0200 Subject: [PATCH] fix(SW-432): set max width on amenities list --- .../HotelPage/AmenitiesList/amenitiesList.module.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/ContentType/HotelPage/AmenitiesList/amenitiesList.module.css b/components/ContentType/HotelPage/AmenitiesList/amenitiesList.module.css index eb78d72f6..1e6046459 100644 --- a/components/ContentType/HotelPage/AmenitiesList/amenitiesList.module.css +++ b/components/ContentType/HotelPage/AmenitiesList/amenitiesList.module.css @@ -6,6 +6,8 @@ display: grid; gap: var(--Spacing-x-one-and-half); height: fit-content; + width: 100%; + max-width: 300px; } .amenityItemList { @@ -26,6 +28,5 @@ @media screen and (min-width: 1367px) { .amenitiesContainer { margin-top: var(--Spacing-x5); - width: 300px; } }