comicbox/tailwind.config.js

16 lines
308 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
module.exports = {
2022-07-25 17:31:20 +00:00
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
maxWidth: {
'1/2': '50%',
},
},
},
2022-07-25 17:31:20 +00:00
plugins: [],
};