diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-07-10 15:39:50 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-07-10 15:39:50 +1000 |
| commit | b56e50c5a76a9c268fbb79e43bafe798815a6227 (patch) | |
| tree | 5b664aa6f627e32eb9803bfee1dbbe51cc068a38 /src/index.css | |
| parent | 016f619daf1864920f978c5cfd8feb94abe3ab08 (diff) | |
Add scrollbar colors
Diffstat (limited to 'src/index.css')
| -rw-r--r-- | src/index.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/index.css b/src/index.css index 7c01490..3330a37 100644 --- a/src/index.css +++ b/src/index.css @@ -13,6 +13,16 @@ body { a { @apply hover:underline hover:cursor-pointer; } +::-webkit-scrollbar { + background-color: #1c1917; + width: 12px; + height: 12px; +} +::-webkit-scrollbar-thumb { + background: #65a30d; + border-radius: 5px; + border: 3px solid #1c1917; +} /* For transitions/animations */ .fade-enter-from, .fade-leave-to { |
