Merge pull request #23345 from nextcloud/fix/scrollbars

Increase scrollbar sizes
This commit is contained in:
John Molakvoæ 2020-10-13 15:19:38 +02:00 committed by GitHub
commit e1a0b3f98f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -151,8 +151,8 @@ body {
/* SCROLLING */ /* SCROLLING */
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 6px; width: 12px;
height: 5px; height: 12px
} }
::-webkit-scrollbar-track-piece { ::-webkit-scrollbar-track-piece {
@ -161,7 +161,9 @@ body {
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: var(--color-border-dark); background: var(--color-border-dark);
border-radius: var(--border-radius); border-radius: var(--border-radius-large);
border: 2px solid transparent;
background-clip: content-box;
} }