Make panel scrollbar track persistent
The bar is effectively invisible, but having it present means that we don't see a jarring change in width when the content expands into the overflow zone and triggers the scrollbar to suddenly appear. // FREEBIE
This commit is contained in:
parent
5a9358efc9
commit
4060221b9c
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@
|
|||
|
||||
.panel {
|
||||
height: calc(100% - #{$header-height});
|
||||
overflow-y: auto;
|
||||
overflow-y: scroll;
|
||||
|
||||
.container {
|
||||
padding-top: 20px;
|
||||
|
|
|
@ -640,7 +640,7 @@ input.search {
|
|||
height: 100%; }
|
||||
.conversation .panel {
|
||||
height: calc(100% - 64px);
|
||||
overflow-y: auto; }
|
||||
overflow-y: scroll; }
|
||||
.conversation .panel .container {
|
||||
padding-top: 20px;
|
||||
max-width: 910px;
|
||||
|
|
Loading…
Reference in a new issue