Skip to content

Instantly share code, notes, and snippets.

View ahoward1024's full-sized avatar

Alex Howard ahoward1024

  • Colorado
View GitHub Profile
@ahoward1024
ahoward1024 / scrollbar.js
Last active April 27, 2022 18:46 — forked from parafeu/scrollbar.js
Add corner color and rounding styles
const plugin = require("tailwindcss/plugin");
module.exports = plugin(function ({ addUtilities, matchUtilities, theme }) {
const scrollbarTrackColorValue = (value) => ({
'--scrollbar-track': value,
'&::-webkit-scrollbar-track': {
"background-color": value
}
})