Browse Source

Fix webkit scrollbars (#7191)

* Revert "Make scroll bars wider (#7060)"

This reverts commit 11715454d0.

* for real make webkit scrollbar wider
pull/4/head
beatrix 6 years ago
committed by Eugen Rochko
parent
commit
ca2cbe8f0f
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      app/javascript/styles/mastodon/reset.scss

+ 5
- 0
app/javascript/styles/mastodon/reset.scss View File

@ -53,6 +53,11 @@ table {
border-spacing: 0;
}
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-thumb {
background: lighten($ui-base-color, 4%);
border: 0px none $base-border-color;

Loading…
Cancel
Save