From 1dededd833955833c2a3d2da883db86ae7c6b16c Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Fri, 16 Jan 2026 14:49:08 +0100 Subject: [PATCH] Auto-commit: add custom floating effect for all the images on the page --- src/app/globals.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index 7a0bde8..089818e 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -98,6 +98,10 @@ --width-carousel-padding: calc((100vw - var(--width-content-width)) / 2 + 1px - var(--vw-1_5)); --width-carousel-padding-controls: calc((100vw - var(--width-content-width)) / 2 + 1px); --width-carousel-padding-expanded: calc((var(--width-content-width-expanded) - var(--width-content-width)) / 2 + 1px - var(--vw-1_5)); +.image-block img:hover { + transform: scale(1.1); + transition: transform 0.3s ease-in-out; +} .shadow-gradient { position: fixed; bottom: 0;