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.

34 lines
794 B

module.exports = {
darkMode: 'class',
2 years ago
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}"
],
theme: {
extend: {
2 years ago
zIndex: {
'9000': '9000',
},
screens: {
'sm': '640px',
// => @media (min-width: 640px) { ... }
'md': '768px',
// => @media (min-width: 768px) { ... }
'lg': '1024px',
// => @media (min-width: 1024px) { ... }
'xl': '1280px',
// => @media (min-width: 1280px) { ... }
'2xl': '1536px',
// => @media (min-width: 1536px) { ... }
}
2 years ago
}
},
variants: {
extend: {},
},
2 years ago
plugins: [
require('tailwindcss')('./tailwind.config.js'),
require('autoprefixer'),
2 years ago
],
}