From c5cae4342815b9cfaad1997ec9b8bc5c6eb79374 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 30 Sep 2025 15:29:34 +0200 Subject: [PATCH] STYLE introducing the animation css component --- resources/css/base/animation.css | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 resources/css/base/animation.css diff --git a/resources/css/base/animation.css b/resources/css/base/animation.css new file mode 100644 index 0000000..2e15ab5 --- /dev/null +++ b/resources/css/base/animation.css @@ -0,0 +1,6 @@ +.animate-hover-top { + @apply transition-all duration-300 ease-out; + &:hover { + @apply translate-y-[-6px]; + } +}