25 lines
479 B
JavaScript
25 lines
479 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{html,ts}",
|
|
"./src/**/**/*.{html,ts}",
|
|
"./src/**/**/**/*.{html,ts}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
screens: {
|
|
'2xl': {'max': '1535px'},
|
|
'xl': {'max': '1279px'},
|
|
'lg': {'max': '1023px'},
|
|
'md': {'max': '992px'},
|
|
'sm': {'max': '768px'},
|
|
}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
],
|
|
corePlugins: {
|
|
preflight: false,
|
|
}
|
|
}
|