mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 02:23:21 +03:00
22 lines
420 B
JavaScript
22 lines
420 B
JavaScript
const { resolveProjectPath } = require('wasp/dev')
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [resolveProjectPath('./src/**/*.{js,ts,jsx,tsx}')],
|
|
theme: {
|
|
extend: {
|
|
skew: {
|
|
'min2': '-2deg',
|
|
'min4': '-4deg',
|
|
'min6': '-6deg',
|
|
}
|
|
},
|
|
focus: {
|
|
outline: 'none',
|
|
},
|
|
},
|
|
plugins: [
|
|
// require('@tailwindcss/aspect-ratio')
|
|
],
|
|
};
|