comicbox/tailwind.config.js

19 lines
376 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-08-01 16:18:55 +00:00
minWidth: {
2022-08-01 16:20:29 +00:00
xl: '36rem',
2022-08-01 16:18:55 +00:00
},
2022-07-25 17:31:20 +00:00
},
},
2022-07-25 17:31:20 +00:00
plugins: [],
};