xyyd-fatfox/tailwind.config.cjs

23 lines
540 B
JavaScript
Raw Normal View History

2024-11-07 18:48:45 +08:00
/* eslint-disable no-undef */
/* Copyright 2021, Milkdown by Mirone. */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
animation: {
wiggle: 'wiggle .3s ease-in-out infinite'
},
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(-1deg)' },
'50%': { transform: 'rotate(1deg)' }
}
}
}
2024-11-07 18:48:45 +08:00
},
2024-11-07 18:48:45 +08:00
plugins: [require('@tailwindcss/typography')]
}