23 lines
540 B
JavaScript
23 lines
540 B
JavaScript
/* 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)' }
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
plugins: [require('@tailwindcss/typography')]
|
|
}
|