You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
407 B
19 lines
407 B
11 months ago
|
module.exports = {
|
||
|
content: [
|
||
|
"./public/index.html",
|
||
|
"./src/**/*.{html,vue,js,ts,jsx,tsx}",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
|
||
|
},
|
||
|
screens: {
|
||
|
"xs": {"min": "0px", "max": "599px"},
|
||
|
"sm": {"min": "600px", "max": "1023px"},
|
||
|
"md": {"min": "1024px", "max": "1439px"},
|
||
|
"lg": {"min": "1440px", "max": "1919px"},
|
||
|
"xl": {"min": "1920px"},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|