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