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

18 lines
286 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: [],
}