diff --git a/components/HotelReservation/HotelCard/HotelCardSkeleton.module.css b/components/HotelReservation/HotelCard/HotelCardSkeleton.module.css index 2305130c7..1d757cebf 100644 --- a/components/HotelReservation/HotelCard/HotelCardSkeleton.module.css +++ b/components/HotelReservation/HotelCard/HotelCardSkeleton.module.css @@ -45,7 +45,9 @@ } .text { - display: block; + gap: 10px; + display: flex; + flex-direction: column; } .card { @@ -55,4 +57,7 @@ width: 315px; height: 100%; } + .priceVariants { + max-width: 260px; + } } diff --git a/components/HotelReservation/HotelCard/HotelCardSkeleton.tsx b/components/HotelReservation/HotelCard/HotelCardSkeleton.tsx index 9c62f413a..341857247 100644 --- a/components/HotelReservation/HotelCard/HotelCardSkeleton.tsx +++ b/components/HotelReservation/HotelCard/HotelCardSkeleton.tsx @@ -19,7 +19,7 @@ export function HotelCardSkeleton() { - +
@@ -27,6 +27,7 @@ export function HotelCardSkeleton() { {Array.from({ length: 2 }).map((_, index) => ( ))} +
)