18 lines
376 B
JavaScript
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: [],
|
|
};
|