This repository has been archived on 2024-09-22. You can view files and clone it, but cannot push or open issues or pull requests.
zep/tailwind.config.js
Filipe Medeiros b14778fdd7 wowza
2021-11-22 17:07:55 +00:00

24 lines
534 B
JavaScript

module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
keyframes: {
denied: {
'0%, 100%': { transform: 'translateX(0)' },
'12%, 37%, 62%, 87%': { transform: 'translateX(-3px)' },
'25%, 50%, 75%': { transform: 'translateX(3px)' },
},
},
animation: {
denied: 'denied 0.6s ease-in-out',
},
},
},
variants: {
extend: {},
},
plugins: [],
}