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

31 lines
537 B
SCSS
Raw Normal View History

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