Animation: add blur on hover to all images

This commit is contained in:
2026-01-23 12:08:27 +02:00
parent 3d5fefbced
commit b01430cd59

View File

@@ -544,3 +544,13 @@ img:hover {
.card:hover {
transform: scale(1.05);
}
/* Animation base styles */
img {
transition: filter 0.3s ease;
}
img:hover {
filter: blur(4px);
}