diff options
author | beatrix <beatrix.bitrot@gmail.com> | 2018-04-19 17:35:47 -0400 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-04-19 23:35:47 +0200 |
commit | ca2cbe8f0f6eb1efb095817f1dba26f89f1b4a54 (patch) | |
tree | a21eb4186130a86c914596dfe97c717de21ee80a /app/javascript/styles | |
parent | b9c35785e2513ff5ea33c1247eb18e48aa70fc5f (diff) |
Fix webkit scrollbars (#7191)
* Revert "Make scroll bars wider (#7060)" This reverts commit 11715454d033784bf6176b75a954e5c28b5d79e5. * for real make webkit scrollbar wider
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/reset.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/reset.scss b/app/javascript/styles/mastodon/reset.scss index 58d4de35f..ff3b2c022 100644 --- a/app/javascript/styles/mastodon/reset.scss +++ b/app/javascript/styles/mastodon/reset.scss @@ -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; |