wanderhome-quiz-client/client/tailwind.config.cjs

20 lines
329 B
JavaScript
Raw Normal View History

2022-08-25 10:35:21 +01:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px'
},
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
2022-08-25 10:35:21 +01:00
}