Merge pull request #142 from Aymendje/patch-2

This commit is contained in:
Emrik Östling 2024-09-25 23:31:23 +02:00 committed by GitHub
commit 8772e582b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,10 +1,9 @@
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
import scrollbar from 'tailwind-scrollbar';
// eslint-disable-next-line no-undef // eslint-disable-next-line no-undef
module.exports = { module.exports = {
content: ["./src/**/*.{html,js,tsx,jsx,cjs,mjs}"], content: ['./src/**/*.{html,js,tsx,jsx,cjs,mjs}'],
theme: { theme: {
extend: {}, extend: {},
}, },
plugins: [scrollbar()], plugins: [require('tailwind-scrollbar')],
} }