15 lines
291 B
JavaScript
15 lines
291 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./src/**/*.{js,jsx,ts,tsx}",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
screens: {
|
||
|
'sm': '703px',
|
||
|
'lg': '1219px',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|