From 178eb40c1a3f7553123cf6ed2a530cae00e807c2 Mon Sep 17 00:00:00 2001 From: Xevion Date: Thu, 2 Jan 2025 14:55:35 -0600 Subject: [PATCH] animate-pulse-border --- frontend/tailwind.config.mjs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/tailwind.config.mjs b/frontend/tailwind.config.mjs index 3ebe2d0..7ad90d8 100644 --- a/frontend/tailwind.config.mjs +++ b/frontend/tailwind.config.mjs @@ -4,9 +4,18 @@ export default { theme: { extend: { animation: { + "pulse-border": "pulse-border 1s ease-in-out infinite", "pulse-dark": "pulse-dark 2.5s ease-in-out infinite", }, keyframes: { + "pulse-border": { + "0%, 100%": { + "--tw-border-opacity": "1", + }, + "50%": { + "--tw-border-opacity": "0.5", + }, + }, "pulse-dark": { "0%, 100%": { backgroundColor: "#0A3026",