style(SW-337): hotel page ui updates

This commit is contained in:
Fredrik Thorsson
2024-10-09 11:35:10 +02:00
committed by Pontus Dreij
parent eeae38ec1d
commit e5f85e0499
5 changed files with 14 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ export default async function AmenitiesList({
className={styles.showAllAmenities} className={styles.showAllAmenities}
> >
{intl.formatMessage({ id: "Show all amenities" })} {intl.formatMessage({ id: "Show all amenities" })}
<ChevronRightIcon /> <ChevronRightIcon color="burgundy" />
</Link> </Link>
</section> </section>
) )

View File

@@ -1,5 +1,6 @@
import { about } from "@/constants/routes/hotelPageParams" import { about } from "@/constants/routes/hotelPageParams"
import { ChevronRightIcon } from "@/components/Icons"
import ArrowRight from "@/components/Icons/ArrowRight" import ArrowRight from "@/components/Icons/ArrowRight"
import TripAdvisorIcon from "@/components/Icons/TripAdvisor" import TripAdvisorIcon from "@/components/Icons/TripAdvisor"
import Link from "@/components/TempDesignSystem/Link" import Link from "@/components/TempDesignSystem/Link"
@@ -76,7 +77,7 @@ export default async function IntroSection({
scroll={false} scroll={false}
> >
{intl.formatMessage({ id: "Read more about the hotel" })} {intl.formatMessage({ id: "Read more about the hotel" })}
<ArrowRight color="burgundy" /> <ChevronRightIcon color="burgundy" />
</Link> </Link>
</div> </div>
</section> </section>

View File

@@ -62,6 +62,7 @@ export function RoomCard({
textAlign="center" textAlign="center"
type="one" type="one"
color="black" color="black"
className={styles.title}
> >
{title} {title}
</Subtitle> </Subtitle>

View File

@@ -45,6 +45,15 @@
gap: var(--Spacing-x1); gap: var(--Spacing-x1);
} }
.title {
display: flex;
align-items: center;
}
.title:first-child {
height: 2em;
}
.imageWrapper { .imageWrapper {
position: relative; position: relative;
background-color: transparent; background-color: transparent;

View File

@@ -197,6 +197,7 @@
.desktopGallery { .desktopGallery {
display: grid; display: grid;
grid-template-rows: 1.71875rem 1fr 7.8125rem; grid-template-rows: 1.71875rem 1fr 7.8125rem;
row-gap: var(--Spacing-x-one-and-half);
background-color: var(--Base-Background-Primary-Normal); background-color: var(--Base-Background-Primary-Normal);
height: 100%; height: 100%;
position: relative; position: relative;