update: user's panel responsive + height of chat view
This commit is contained in:
parent
797728b743
commit
58e2f3b2ea
@ -157,6 +157,7 @@ sib-notifications {
|
|||||||
sib-display-value[name='first_name'] {
|
sib-display-value[name='first_name'] {
|
||||||
@include icon('arrow-down');
|
@include icon('arrow-down');
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
display: none;
|
||||||
flex-direction: row-reverse;
|
flex-direction: row-reverse;
|
||||||
font-size: 1.8rem;
|
font-size: 1.8rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
@ -165,8 +166,8 @@ sib-notifications {
|
|||||||
margin-left: 1.5rem;
|
margin-left: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint(sm) {
|
@include breakpoint(lg) {
|
||||||
display: none;
|
display: flex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,16 +1,19 @@
|
|||||||
.chat-view {
|
.chat-view {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
height: calc(100vh - 84px - 83px);
|
height: calc(100vh - 50px - 56px); /* Header's and subheader's height on mobile */
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
@include breakpoint(lg) {
|
||||||
|
height: calc(100vh - 84px - 83px); /* Header's and subheader's height on mobile */
|
||||||
|
}
|
||||||
|
|
||||||
> sib-chat {
|
> sib-chat {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
max-height: calc(100vh - 84px - 83px);
|
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user