From c37fa43f68053621b252ba6928c58bac723602b1 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 1 Jul 2025 17:16:08 +0200 Subject: [PATCH] FEATURE Applying grayscale on images --- resources/css/blocks/gallery.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/css/blocks/gallery.css b/resources/css/blocks/gallery.css index ef96958..fe042c8 100644 --- a/resources/css/blocks/gallery.css +++ b/resources/css/blocks/gallery.css @@ -4,7 +4,7 @@ .gallery-card { @apply h-auto py-12 border border-primary !p-3; img { - @apply w-full h-80 object-cover; + @apply w-full h-80 object-cover filter grayscale hover:grayscale-0 transition-all duration-300; } }