comicbox/tailwind.config.js
2022-08-01 17:29:54 +01:00

18 lines
376 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
maxWidth: {
'1/2': '50%',
},
minWidth: {
xl: '36rem',
},
},
},
plugins: [],
};