diff --git a/app.css b/app.css index cc57388..9c6fbc4 100644 --- a/app.css +++ b/app.css @@ -39,13 +39,13 @@ i { width: 20px } -* ::-webkit-scrollbar { +html * ::-webkit-scrollbar { -webkit-appearance: none; width: 8px; height: 8px; } -* ::-webkit-scrollbar-thumb, html ::-webkit-scrollbar-thumb { +html * ::-webkit-scrollbar-thumb { cursor: pointer; border-radius: 5px; background: #ccc; @@ -53,7 +53,7 @@ i { transition: color .2s ease; } -.dark * ::-webkit-scrollbar-thumb, html.dark ::-webkit-scrollbar-thumb { +html .dark * ::-webkit-scrollbar-thumb { cursor: pointer; border-radius: 5px; background: #202225; @@ -61,14 +61,14 @@ i { transition: color .2s ease; } -* ::-webkit-scrollbar-track, html ::-webkit-scrollbar-track { +html * ::-webkit-scrollbar-track { background: #f2f2f2; border-radius: 0; border: 4px solid transparent; border-radius: 8px; } -.dark * ::-webkit-scrollbar-track, html.dark ::-webkit-scrollbar-track { +html .dark * ::-webkit-scrollbar-track { background: #2e3338; border-radius: 0; }