From 9e722347e55a10f079fa527e4b441c2e9502f524 Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Tue, 7 Jan 2025 18:14:00 +0330 Subject: [PATCH] added new animations --- frontend/assets/css/tailwind.css | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/frontend/assets/css/tailwind.css b/frontend/assets/css/tailwind.css index 4e59175..2cf2d1f 100644 --- a/frontend/assets/css/tailwind.css +++ b/frontend/assets/css/tailwind.css @@ -120,16 +120,11 @@ --breakpoint-xs: 480px; /* ANIMATIONS */ -<<<<<<< HEAD - --animate-marquee: marquee 3s linear infinite; + --animate-marquee: marquee 20s 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; -======= - --animate-marquee: marquee 25s linear infinite; - --animate-marquee-reverse: marquee 25s linear infinite reverse; ->>>>>>> be4fa509843c81855f5ffc118150196c94a7b17b @keyframes marquee { to { @@ -167,11 +162,11 @@ @keyframes contentShow { from { opacity: 0; - transform: translate(-50%, -48%) scale(0.96); + transform: scale(0.96); } to { opacity: 1; - transform: translate(-50%, -50%) scale(1); + transform: scale(1); } } }