From 9f753607a6f1263b7a5749412f35dc15d8b1dd0b Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Thu, 26 Dec 2024 20:50:43 +0330 Subject: [PATCH] new changes --- frontend/assets/css/tailwind.css | 42 ++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/frontend/assets/css/tailwind.css b/frontend/assets/css/tailwind.css index 9eff1e5..c01171f 100644 --- a/frontend/assets/css/tailwind.css +++ b/frontend/assets/css/tailwind.css @@ -121,12 +121,54 @@ /* ANIMATIONS */ --animate-marquee: marquee 3s linear infinite; + --animate-slide-down: slideDown 300ms ease-out; + --animate-slide-up: slideUp 300ms ease-out; + --animate-overlay-show: overlayShow 150ms ease-in; + --animate-content-show: contentShow 150ms ease-in; @keyframes marquee { to { transform: translateY(-50%); } } + + @keyframes slideDown { + from { + height: 0; + } + to { + height: var(--reka-accordion-content-height); + } + } + + @keyframes slideUp { + from { + height: var(--reka-accordion-content-height); + } + to { + height: 0; + } + } + + @keyframes overlayShow { + from { + opacity: 0; + } + to { + opacity: 1; + } + } + + @keyframes contentShow { + from { + opacity: 0; + transform: translate(-50%, -48%) scale(0.96); + } + to { + opacity: 1; + transform: translate(-50%, -50%) scale(1); + } + } } /* CONTAINER */