design-system #5

Merged
jare2473 merged 2 commits from design-system into main 2025-09-11 14:07:01 +02:00
3 changed files with 19 additions and 4 deletions
Showing only changes of commit 6c40eeb5b5 - Show all commits

Binary file not shown.

After

Width:  |  Height:  |  Size: 507 KiB

View File

@@ -34,9 +34,17 @@ export function RoomBooking({ bookings, showSuccessBanner, lastCreatedBooking, o
)}
<h1 className={styles.pageHeading}>Lokalbokning</h1>
<h2 className={styles.sectionHeading}>Ny bokning</h2>
<Link to='/new-booking'>
<Card imageUrl="./grupprum.jpg" header="Litet grupprum" subheader="Plats för 5 personer" />
</Link>
<div className={styles.roomCategoryCards}>
<Link to='/new-booking'>
<Card imageUrl="./grupprum.jpg" header="Litet grupprum" subheader="Plats för 5 personer" />
</Link>
<Link to='/new-booking'>
<Card imageUrl="./stort-grupprum.jpg" header="Stort grupprum" subheader="Plats för 10 personer" />
</Link>
</div>
<hr className={styles.sectionDivider} />
<h2 className={styles.sectionHeading}>Mina bokingar</h2>
<BookingsList
bookings={bookings}

View File

@@ -19,10 +19,17 @@
color: var(--text-primary);
}
.roomCategoryCards {
display: flex;
flex-direction: column;
gap: 2rem;
}
.sectionDivider {
border: none;
margin-top: 4rem;
margin-bottom: 4rem;
border-top: var(--border-width-thin) solid var(--border-medium);
margin-bottom: var(--spacing-3xl);
}
.welcomeSection {