Improved overflow behaviour

Signed-off-by: WolverinDEV <git@teaspeak.de>
This commit is contained in:
WolverinDEV 2019-12-20 21:16:03 +01:00
parent 473bf925b7
commit b0adcb3c5d
No known key found for this signature in database
GPG key ID: 77A6C15085150EEB

View file

@ -17,6 +17,7 @@
position: relative;
width: 1.6em;
margin-left: .5em;
margin-right: .5em;
font-size: .9em;
display: flex;
@ -36,7 +37,7 @@
}
}
.hostbanner {
.container-top {
flex-grow: 0;
flex-shrink: 0;
@ -59,6 +60,15 @@
}
}
.container-body {
flex-shrink: 1;
min-height: 12em; /* 10em + 2 * 1em margin */
overflow-y: auto;
@include chat-scrollbar-vertical();
}
.group {
flex-grow: 0;
flex-shrink: 0;
@ -220,6 +230,9 @@
.container-buttons {
margin: 1em;
flex-grow: 0;
flex-shrink: 0;
display: flex;
flex-direction: row;
justify-content: space-between;