feat(SW-68): change classname

This commit is contained in:
Fredrik Thorsson
2024-08-08 14:12:44 +02:00
parent 03fd0a8a49
commit b45fc7eb4a
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
background-color: var(--Scandic-Brand-Warm-White); background-color: var(--Scandic-Brand-Warm-White);
} }
.hotelSection { .hotelCards {
display: grid; display: grid;
gap: var(--Spacing-x4); gap: var(--Spacing-x4);
} }

View File

@@ -50,7 +50,7 @@ export default async function SelectHotelPage({
</Link> </Link>
<HotelFilter filters={hotelFilters} /> <HotelFilter filters={hotelFilters} />
</section> </section>
<section className={styles.hotelSection}> <section className={styles.hotelCards}>
{hotels.map((hotel) => ( {hotels.map((hotel) => (
<HotelCard key={hotel.name} hotel={hotel} /> <HotelCard key={hotel.name} hotel={hotel} />
))} ))}