Add equal height card styling and layout improvements

This commit is contained in:
2025-08-01 03:23:55 -04:00
parent 08539b8a53
commit d0db4bec08
6 changed files with 94 additions and 75 deletions
+17
View File
@@ -240,6 +240,23 @@ body {
transform: translateY(-2px);
box-shadow: 0 4px 8px hsl(var(--foreground) / 0.1);
}
/* Equal height cards in grid layouts */
.grid-equal-height > * {
height: 100%;
}
.card-full-height {
height: 100%;
display: flex;
flex-direction: column;
}
.card-content-stretch {
flex: 1;
display: flex;
flex-direction: column;
}
}
@keyframes fadeIn {