diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-08-09 16:58:48 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-08-09 16:58:48 +0700 |
| commit | b4b36c45de25305f43ee83441f13a75c48b07994 (patch) | |
| tree | fae5813a1aadf310c5252a5c91303e3268d19849 /tailwind.config.js | |
| parent | 3269cca77eae6c9f5508c4a64a1405ed3d9007fb (diff) | |
<iman> update higlight 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')] |
