This updates the select room page according to the new UX. It has different sections on the same page, but with specific URLs per section. Since neither UX, UI nor API is completely done both design and data structures are a bit temporary. Approved-by: Simon.Emanuelsson
16 lines
352 B
CSS
16 lines
352 B
CSS
.card {
|
|
font-size: 14px;
|
|
border-radius: var(--Corner-radius-Medium);
|
|
border: 1px solid var(--Base-Border-Normal);
|
|
padding: var(--Spacing-x-one-and-half) var(--Spacing-x2);
|
|
}
|
|
|
|
input[type="radio"]:checked + .card {
|
|
background-color: var(--Base-Surface-Primary-light-Hover-alt);
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|