diff --git a/components/Blocks/CardsGrid.tsx b/components/Blocks/CardsGrid.tsx index 92d98a61b..81e0b0eff 100644 --- a/components/Blocks/CardsGrid.tsx +++ b/components/Blocks/CardsGrid.tsx @@ -43,7 +43,7 @@ export default function CardsGrid({ return ( {IconComponent && ( - + )} {facility.name} @@ -44,7 +49,7 @@ export default async function AmenitiesList({ className={styles.showAllAmenities} > {intl.formatMessage({ id: "Show all amenities" })} - + ) diff --git a/components/ContentType/HotelPage/IntroSection/index.tsx b/components/ContentType/HotelPage/IntroSection/index.tsx index 360d0f8df..010530f74 100644 --- a/components/ContentType/HotelPage/IntroSection/index.tsx +++ b/components/ContentType/HotelPage/IntroSection/index.tsx @@ -1,7 +1,6 @@ import { about } from "@/constants/routes/hotelPageParams" -import { ChevronRightIcon } from "@/components/Icons" -import ArrowRight from "@/components/Icons/ArrowRight" +import { ChevronRightSmallIcon } from "@/components/Icons" import TripAdvisorIcon from "@/components/Icons/TripAdvisor" import Link from "@/components/TempDesignSystem/Link" import BiroScript from "@/components/TempDesignSystem/Text/BiroScript" @@ -48,7 +47,7 @@ export default async function IntroSection({
- {intl.formatMessage({ id: "Welcome to" })}: + {intl.formatMessage({ id: "Welcome to" })} {hotelName}
@@ -77,7 +76,7 @@ export default async function IntroSection({ scroll={false} > {intl.formatMessage({ id: "Read more about the hotel" })} - +
diff --git a/components/ContentType/HotelPage/Rooms/RoomCard/index.tsx b/components/ContentType/HotelPage/Rooms/RoomCard/index.tsx index 2f7d33c25..81ab9b720 100644 --- a/components/ContentType/HotelPage/Rooms/RoomCard/index.tsx +++ b/components/ContentType/HotelPage/Rooms/RoomCard/index.tsx @@ -2,7 +2,7 @@ import { useIntl } from "react-intl" -import { ImageIcon } from "@/components/Icons" +import { GalleryIcon } from "@/components/Icons" import Image from "@/components/Image" import RoomSidePeek from "@/components/SidePeeks/RoomSidePeek" import Body from "@/components/TempDesignSystem/Text/Body" @@ -44,7 +44,7 @@ export function RoomCard({ room }: RoomCardProps) { {/* */} {/* )} */} - + {images.length} {/*NOTE: images from the test API are hosted on test3.scandichotels.com, diff --git a/components/ContentType/HotelPage/Rooms/RoomCard/roomCard.module.css b/components/ContentType/HotelPage/Rooms/RoomCard/roomCard.module.css index fcec738e4..5270e9882 100644 --- a/components/ContentType/HotelPage/Rooms/RoomCard/roomCard.module.css +++ b/components/ContentType/HotelPage/Rooms/RoomCard/roomCard.module.css @@ -26,10 +26,11 @@ display: flex; gap: var(--Spacing-x-half); align-items: center; - background-color: var(--Main-Grey-90); + background-color: var(--UI-Grey-90); + opacity: 90%; color: var(--UI-Input-Controls-Fill-Normal); padding: var(--Spacing-x-half) var(--Spacing-x1); - border-radius: var(--Corner-radius-Medium); + border-radius: var(--Corner-radius-Small); } .content { diff --git a/components/TempDesignSystem/Accordion/AccordionItem/accordionItem.module.css b/components/TempDesignSystem/Accordion/AccordionItem/accordionItem.module.css index 7940ee17f..c2dacab26 100644 --- a/components/TempDesignSystem/Accordion/AccordionItem/accordionItem.module.css +++ b/components/TempDesignSystem/Accordion/AccordionItem/accordionItem.module.css @@ -18,16 +18,13 @@ font-weight: var(--typography-Body-Bold-fontWeight); transition: background-color 0.3s; } -.summary:hover, -.accordionItem details[open] .summary { - background-color: var(--Base-Surface-Primary-light-Hover-alt, #f2ece6); +.summary:hover { + background-color: var(--Base-Surface-Primary-light-Hover-alt); } -.accordionItem.light .summary:hover, -.accordionItem.light details[open] .summary { - background-color: var(--Base-Surface-Primary-light-Hover, #f9f6f4); +.accordionItem.light .summary:hover { + background-color: var(--Base-Surface-Primary-light-Hover); } -.accordionItem.subtle .summary:hover, -.accordionItem.subtle details[open] .summary { +.accordionItem.subtle .summary:hover { background-color: var(--Base-Surface-Primary-light-Normal); } diff --git a/components/TempDesignSystem/Accordion/accordion.module.css b/components/TempDesignSystem/Accordion/accordion.module.css index 64f18730c..3c6e0d689 100644 --- a/components/TempDesignSystem/Accordion/accordion.module.css +++ b/components/TempDesignSystem/Accordion/accordion.module.css @@ -16,3 +16,10 @@ .accordion li:last-child { border: none; } + +.accordion details > summary { + list-style: none; +} +.accordion details > summary::-webkit-details-marker { + display: none; +}