1234567891011121314151617181920212223242526272829 |
- module.exports = {
- purge: [
- './src/**/*.html',
- './src/**/*.vue',
- './src/**/*.jsx',
- './src/**/*.js'
- ],
- darkMode: false, // or 'media' or 'class'
- theme: {
- extend: {
- height: {
- '50px': '50px',
- '100px': '100px'
- },
- width: {
- '23/100': '23%',
- '100px': '100px',
- '200px': '200px'
- }
- }
- },
- variants: {
- extend: {}
- },
- // corePlugins: {
- // preflight: false
- // },
- plugins: []
- }
|