Animation: add scale effect on hover to all cards

This commit is contained in:
2026-01-23 12:03:32 +02:00
parent daf6eb38da
commit 3d5fefbced

View File

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