tailwindcss
tailwindcss copied to clipboard
Add utilities for `scrollbar-width`
This PR adds utlities for the scrollbar-width
CSS property.
Currently only implemented in Firefox.
Chrome (in-progress) bug: https://crbug.com/891944
Safari bug: https://webkit.org/b/231588
The scrollbar-none
class also works with Chrome and Safari with the fallback to the ::-webkit-scrollbar
pseudo element.
Thanks for this! Just a head's up it's probably going to take a while to review this — I've wanted to add scrollbar related utilities for a long time but have never found the right chance to sit down and study all of the properties, browser compatibility, etc. and then really design the ideal API, and that's all stuff I'll have to do before we can merge these ones. It's possible I don't get a chance to really get into this until like December after we finish v3.0 and this can target v3.1 perhaps.
Hope that's understandable, thanks again!
That's absolutely fine. These are simple enough to add to a project through plugins for the time being. Better to have good ergonomics and take a bit longer to reach Core.
Hopefully in the meantime browser support gets a bit better for one or more of the properties.
Awesome, thanks man! PS. I was born in Wales 🏴
https://github.com/tailwindlabs/tailwindcss/discussions/5751 - relevant discussion I made regarding scrollbar-color
property. Just linking here so it's all linked together.
I think this's really helpful for things like hiding scrollbar? when are we ready to release it?
I created a plugin to handle styling scrollbars. It may be useful to see how I set it up.
https://github.com/brandonpittman/tailwindcss-plugin-fancy/blob/master/src/scrollbars.ts
Unfortunately looks like scrollbar-width
property is still only supported in Firefox.
Potentially worth simply adding the scrollbar-none
class which includes the webkit fallback and dropping at least the thin
version. This way users are able to hide scrollbars (which I suspect is what the vast majority actually care about).