2021-07-28 15:15:52 +02:00
|
|
|
.drawer-flexBox {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.drawer-flexItem {
|
|
|
|
flex: 1;
|
|
|
|
min-height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.drawer {
|
|
|
|
@extend .drawer-flexItem;
|
|
|
|
@extend .drawer-flexBox;
|
|
|
|
min-width: 0;
|
|
|
|
border-right: 1px solid var(--bg-surface-border);
|
|
|
|
|
|
|
|
[dir=rtl] & {
|
|
|
|
border-right: none;
|
|
|
|
border-left: 1px solid var(--bg-surface-border);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__content-wrapper {
|
|
|
|
@extend .drawer-flexItem;
|
|
|
|
@extend .drawer-flexBox;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb__wrapper {
|
|
|
|
display: none;
|
|
|
|
height: var(--header-height);
|
|
|
|
}
|
2021-08-31 15:13:31 +02:00
|
|
|
.rooms__wrapper {
|
2021-07-28 15:15:52 +02:00
|
|
|
@extend .drawer-flexItem;
|
|
|
|
}
|
|
|
|
|
2021-08-31 15:13:31 +02:00
|
|
|
.rooms-container {
|
2021-07-28 15:15:52 +02:00
|
|
|
padding-bottom: var(--sp-extra-loose);
|
|
|
|
|
2021-08-31 15:13:31 +02:00
|
|
|
& > .room-selector {
|
2021-08-29 10:27:55 +02:00
|
|
|
width: calc(100% - var(--sp-extra-tight));
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
|
|
[dir=rtl] & {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-08-31 15:13:31 +02:00
|
|
|
& > .room-selector:first-child {
|
2021-07-28 15:15:52 +02:00
|
|
|
margin-top: var(--sp-extra-tight);
|
|
|
|
}
|
|
|
|
|
|
|
|
& .cat-header {
|
|
|
|
margin: var(--sp-normal);
|
|
|
|
margin-bottom: var(--sp-extra-tight);
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|