16 lines
205 B
CSS
16 lines
205 B
CSS
.rooms {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x5);
|
|
}
|
|
|
|
.room {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x025);
|
|
}
|
|
|
|
.roomTitle {
|
|
color: var(--Text-Tertiary);
|
|
}
|