hubl/src/styles/components/chat.scss

21 lines
344 B
SCSS
Raw Normal View History

2019-05-14 15:32:42 +00:00
.chat-view {
2019-05-14 16:19:30 +00:00
padding: 0;
height: calc(100vh - 106px);
2019-05-14 16:19:30 +00:00
position: relative;
2019-06-05 09:45:41 +00:00
overflow: hidden;
2019-05-14 15:32:42 +00:00
@include breakpoint(lg) {
height: calc(100vh - 84px - 83px); /* Header's and subheader's height on mobile */
}
2020-06-18 18:02:54 +00:00
> solid-xmpp-chat {
2019-05-14 15:32:42 +00:00
position: absolute;
top: 0;
left: 0;
right: 0;
2019-05-14 16:19:30 +00:00
bottom: 0;
z-index: 0;
2019-05-14 15:32:42 +00:00
}
}