From 3aeefe4fb67ed5ab1c42f380177141226033ae23 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 24 Feb 2026 15:05:57 +0100 Subject: [PATCH] FEATURE Handling a new --download variation --- resources/css/components/buttons.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/resources/css/components/buttons.css b/resources/css/components/buttons.css index b964047..6c06b7e 100644 --- a/resources/css/components/buttons.css +++ b/resources/css/components/buttons.css @@ -38,6 +38,21 @@ @apply translate-x-2; } } + &--download { + @apply bg-transparent filter-primary border-none px-0 py-6; + &:after { + content: none !important; + } + + img { + @apply w-20; + transition: transform 0.3s ease-in-out; + } + + &:hover img { + @apply translate-y-2; + } + } &--has-icon { @apply flex items-center gap-4;