diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2024-08-09 10:28:40 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2024-08-09 10:28:40 +0000 |
| commit | 890570d8e033365867cb33e013a975ce7f8f5b5c (patch) | |
| tree | a669433a1229685f6079020304de0c55603dc045 /tailwind.config.js | |
| parent | 0bb71b8aa1da040a35399292b9c5919c5cad6d49 (diff) | |
| parent | 949e654bec249177618c3efc1b63c50f174ea0ae (diff) | |
Merged in Feature/highlight-button-whatsapp (pull request #229)
<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')] |
