13 lines
229 B
JavaScript
13 lines
229 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["*.{html,js}"],
|
|
theme: {
|
|
extend: {
|
|
width: {
|
|
'112': '28rem',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|