Fallenbagel / jellyseerr

Fork of overseerr for jellyfin support
MIT License
3.22k stars 201 forks source link

Scrollbar Look. #856

Open XDark187 opened 2 weeks ago

XDark187 commented 2 weeks ago

Description

The default thick white scrollbar is not matching with the modern UI of jellyseerr, it would be nice if it was thin and matched the colors of the UI. image

Desired Behavior

it can be easily changed to something like this: image

Additional Context

For anyone who uses darkreader extension you can add the following CSS to make the scrollbar as shown above:

* {
  scrollbar-width: thin;
  scrollbar-color: #4b5563 #1f2937;
}

*:hover {
  scrollbar-color: #6b7280 #1f2937;
}

Code of Conduct

gauthier-th commented 2 weeks ago

Could you create a PR for this?