Style property cards with red border and dark background

Matches service cards styling:
- Dark background (--color-bg-dark)
- Red accent border (--color-accent)
- Rounded corners with overflow hidden

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Hanson.xyz Dev
2025-11-30 20:09:29 -06:00
parent f696f125a6
commit 8da4b16633
2 changed files with 5 additions and 1 deletions
File diff suppressed because one or more lines are too long
@@ -8,6 +8,10 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100%; height: 100%;
background-color: var(--color-bg-dark);
border: 1px solid var(--color-accent);
border-radius: 0.5rem;
overflow: hidden;
} }
.property-card-image { .property-card-image {