From daf6eb38da83725a7dcbd9c1a36f52af3f3c2880 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Fri, 23 Jan 2026 12:03:07 +0200 Subject: [PATCH] Animation: add blur on hover to all images --- src/app/globals.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index ea3c395..05c16ae 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -524,3 +524,13 @@ h5, h6 { font-family: var(--font-manrope), sans-serif; } + + +/* Animation base styles */ +img { + transition: filter 0.3s ease; +} + +img:hover { + filter: blur(4px); +}