mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-09 17:45:35 -04:00
27 lines
482 B
CSS
27 lines
482 B
CSS
/* BookingList layout */
|
|
.booking-list {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
/* BookingList item styles */
|
|
.booking-list-item {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
/* Booking time styles */
|
|
.booking-list-time {
|
|
font-weight: 600;
|
|
color: var(--color-on-surface, #23272f);
|
|
font-size: 1rem;
|
|
}
|
|
|
|
/* Invitee styles */
|
|
.booking-list-invitees {
|
|
display: block;
|
|
font-size: 0.85em;
|
|
color: var(--color-on-surface-secondary, #555);
|
|
font-style: italic;
|
|
margin-top: 2px;
|
|
}
|