File size: 398 Bytes
e8d6409 b4fa09a de0f745 44d0a2b b4fa09a 847ea5c e8d6409 44d0a2b e8d6409 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
screens: {
desktop: '816px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px'
},
extend: {
screens: {
'with-hover': { raw: '(hover: hover)' },
'no-hover': { raw: '(hover: none)' }
}
}
},
plugins: [require('@tailwindcss/typography')]
};
|