feat: initial display of linkedReservations on confirmation page * feat: initial display of linkedReservations on confirmation page * refactor: move notFound Approved-by: Tobias Johansson
20 lines
409 B
CSS
20 lines
409 B
CSS
.reservation {
|
|
background-color: var(--Base-Background-Primary-Normal);
|
|
border-radius: var(--Corner-radius-Large);
|
|
display: grid;
|
|
gap: var(--Spacing-x2);
|
|
padding: var(--Spacing-x2) var(--Spacing-x2) var(--Spacing-x3)
|
|
var(--Spacing-x2);
|
|
}
|
|
|
|
.details {
|
|
display: grid;
|
|
gap: var(--Spacing-x-half) var(--Spacing-x3);
|
|
list-style: none;
|
|
}
|
|
|
|
.listItem {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
}
|