fix(ui): improve SuggestedTripCard padding and height

Increase card height from 160 to 175 and add extra bottom padding
to prevent date text from being cut off.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Trey t
2026-01-14 13:28:20 -06:00
parent d34be05d61
commit 1301442604

View File

@@ -67,7 +67,8 @@ struct SuggestedTripCard: View {
.foregroundStyle(Theme.textMuted(colorScheme))
}
.padding(Theme.Spacing.md)
.frame(width: 200, height: 160)
.padding(.bottom, Theme.Spacing.xs)
.frame(width: 200, height: 175)
.background(Theme.cardBackground(colorScheme))
.clipShape(RoundedRectangle(cornerRadius: Theme.CornerRadius.large))
.overlay {