This commit is contained in:
Clément
2018-10-18 20:06:43 +02:00
parent ca4735d3bc
commit ac9fba3c31
10 changed files with 27 additions and 14 deletions

View File

@ -52,9 +52,11 @@ sib-display-lookuplist[name='skills'] {
.chat-view {
padding: 1em;
border: 1px dashed green;
position: relative;
min-height: 300px;
background-color: #fff;
@extend %shadow;
height: calc(100vh - 143px - 5em);
height: calc(100vh - var(--pos-top, 143px) - 5em);
> sib-chat {
@include pos();
}

View File

@ -24,6 +24,7 @@ h5,
h6 {
color: $color-black;
font-weight: 600;
padding: 0;
margin: 0.67em 0;
span {
font-weight: 400;
@ -97,7 +98,6 @@ h3 {
#subContainer {
display: flex;
min-height: 100%;
}
#mainContainer {

View File

@ -5,10 +5,8 @@
background-color: $color-white;
color: $color-grey;
max-width: 16rem;
position: sticky;
top: 0;
height: 100%;
max-height: 100vh;
position: relative;
min-height: 100%;
&.open {
transform: translateX(0);
}