cinny/src/app/organisms/room/RoomView.scss

31 lines
537 B
SCSS
Raw Normal View History

2021-08-31 13:13:31 +00:00
.room-view-flexBox {
2021-07-28 13:15:52 +00:00
display: flex;
flex-direction: column;
}
2021-08-31 13:13:31 +00:00
.room-view-flexItem {
2021-07-28 13:15:52 +00:00
flex: 1;
min-height: 0;
min-width: 0;
}
2021-08-31 13:13:31 +00:00
.room-view {
@extend .room-view-flexItem;
@extend .room-view-flexBox;
2021-07-28 13:15:52 +00:00
&__content-wrapper {
2021-08-31 13:13:31 +00:00
@extend .room-view-flexItem;
@extend .room-view-flexBox;
2021-07-28 13:15:52 +00:00
}
&__scrollable {
2021-08-31 13:13:31 +00:00
@extend .room-view-flexItem;
2021-07-28 13:15:52 +00:00
position: relative;
}
&__sticky {
min-height: 85px;
position: relative;
background: var(--bg-surface);
border-top: 1px solid var(--bg-surface-border);
}
}