diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2024-08-15 08:11:05 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2024-08-15 08:11:05 +0000 |
| commit | 5c40f27bb865141a0c4086f03efa5b157b660f6d (patch) | |
| tree | 14a4eb1b7dd64d131023125e6dc72dff3c6cef1e /tailwind.config.js | |
| parent | f4410218351a2f263ca9bbae81f30e1531d40d59 (diff) | |
| parent | 949e654bec249177618c3efc1b63c50f174ea0ae (diff) | |
Merged in Feature/highlight-button-whatsapp (pull request #242)
Feature/highlight button whatsapp
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')] |
