wanderhome-quiz-client/client/tailwind.config.cjs
viveksantayana fd1c4ee14d Built skeleton for the web site.
Need to write the text and make the quiz console.
2022-08-28 07:07:52 +01:00

20 lines
329 B
JavaScript

/** @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'),
],
}