feat: use grid on no upcoming component

This commit is contained in:
Fredrik Thorsson
2024-07-01 11:47:44 +02:00
parent 0887bffe0f
commit e2cd952ce9
7 changed files with 52 additions and 43 deletions

View File

@@ -32,7 +32,7 @@ export default function StayCard({ stay, lang }: StayCardProps) {
{hotelInformation.hotelName}
</Title>
<div className={styles.date}>
<CalendarIcon color="burgundy" className={styles.icon} />
<CalendarIcon color="burgundy" height={24} width={24} />
<Caption asChild>
<time dateTime={arrivalDateTime}>{arrivalDate}</time>
</Caption>

View File

@@ -37,8 +37,3 @@
display: flex;
gap: var(--Spacing-x-half);
}
.icon {
height: 1.5rem;
width: 1.5rem;
}