diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-06-20 12:32:04 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-06-20 12:32:04 +0200 |
commit | b0d73dbbfbf002b9f1d4a7456c627b70901f0979 (patch) | |
tree | 2d210a5bdd8f12a57feb82bb919b28bfa694bb39 | |
parent | 7a878bd0d77fbe8fc2e3e3a341c9c7e3e4e8f6d2 (diff) |
better scroll bar in settings
-rw-r--r-- | styles/editor.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/styles/editor.css b/styles/editor.css index 0003fc8..a3990c2 100644 --- a/styles/editor.css +++ b/styles/editor.css @@ -48,7 +48,7 @@ overflow-y: scroll; overflow-x: hidden; border-radius: 4px; - margin-right: -8px; + margin-right: -16px; } .settings .inner button { background-color: var(--piss); @@ -128,7 +128,12 @@ } .settings ::-webkit-scrollbar-thumb { - background-color: var(--c700); + background: linear-gradient(90deg , var(--c400) 7px, var(--c700) 7px, var(--c700) 9px, var(--c400) 9px); +} + +.settings ::-webkit-scrollbar { + width: 16px; + height: 16px; } .appGrid .viewer { |