diffuse-the-rest / tailwind.config.cjs
mishig's picture
mishig HF staff
License
0005a21
raw history blame
No virus
333 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
screens: {
desktop: '816px'
},
extend: {
screens: {
'with-hover': { raw: '(hover: hover)' },
'no-hover': { raw: '(hover: none)' }
}
}
},
plugins: [require('@tailwindcss/typography'),]
};