hubl/src/styles/components/chat.scss

20 lines
242 B
SCSS
Raw Normal View History

2019-05-14 15:32:42 +00:00
// chat
.chat-view {
2019-05-14 16:19:30 +00:00
padding: 0;
2019-05-14 15:32:42 +00:00
height: calc(100vh - 84px);
2019-05-14 16:19:30 +00:00
position: relative;
2019-05-14 15:32:42 +00:00
> sib-chat {
position: absolute;
top: 0;
left: 0;
right: 0;
2019-05-14 16:19:30 +00:00
bottom: 0;
max-height: calc(100vh - 84px);
z-index: 0;
2019-05-14 15:32:42 +00:00
}
}