From e54e17ae369a18fef1d247f82d19dea45413d22a Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Wed, 24 Jan 2024 16:59:27 +0100 Subject: [PATCH] Added animation into config --- src/frontend/tailwind.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/frontend/tailwind.config.js b/src/frontend/tailwind.config.js index e9e1ecff2..0859683e5 100644 --- a/src/frontend/tailwind.config.js +++ b/src/frontend/tailwind.config.js @@ -28,6 +28,15 @@ module.exports = { }, }, extend: { + keyframes: { + wiggle: { + '0%, 100%': { transform: 'scale(100%)' }, + '50%': { transform: 'scale(120%)' }, + } + }, + animation: { + wiggle: 'wiggle 150ms ease-in-out 1', + }, colors: { "component-icon": "var(--component-icon)", "flow-icon": "var(--flow-icon)",