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:
lilia 2016-03-23 15:28:31 -07:00
parent 5a9358efc9
commit 4060221b9c
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@
.panel {
height: calc(100% - #{$header-height});
overflow-y: auto;
overflow-y: scroll;
.container {
padding-top: 20px;

View file

@ -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;