Add button hover animation effects

This commit is contained in:
2025-08-01 03:33:53 -04:00
parent cf420f5a62
commit 2af114ac9b
6 changed files with 47 additions and 10 deletions
+10
View File
@@ -241,6 +241,16 @@ body {
box-shadow: 0 4px 8px hsl(var(--foreground) / 0.1);
}
/* Button hover effects to match card interactions */
.button-hover {
transition: all 0.2s ease-in-out;
}
.button-hover:hover {
transform: translateY(-1px);
box-shadow: 0 2px 4px hsl(var(--foreground) / 0.1);
}
/* Equal height cards in grid layouts */
.grid-equal-height > * {
height: 100%;