diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-08-09 17:27:04 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-08-09 17:27:04 +0700 |
| commit | 949e654bec249177618c3efc1b63c50f174ea0ae (patch) | |
| tree | 6ad4d6f853befb94cd13a5e0507752df546eac4e /tailwind.config.js | |
| parent | ebe159fc10e4c774ae1bd6aafa772f39618ca372 (diff) | |
<iman> update highlight button
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/tailwind.config.js b/tailwind.config.js index f1c740d5..799fdb02 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -116,7 +116,19 @@ module.exports = { 800: '#760A26', 900: '#610625' } - } + }, + keyframes: { + wobble: { + '0%': { transform: 'translateY(0)' }, + '25%': { transform: 'translateY(-10px)' }, + '50%': { transform: 'translateY(0)' }, + '75%': { transform: 'translateY(10px)' }, + '100%': { transform: 'translateY(0)' }, + }, + }, + animation: { + wobble: 'wobble 0.5s ease forwards', + }, } }, plugins: [require('@tailwindcss/line-clamp'), require('@tailwindcss/typography')] |
