Fix contact tile height stretching

align-items: flex-start lets each tile shrink to its content height
instead of stretching to match the tallest tile (Shop Hours).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
chris 2026-06-12 19:48:58 -04:00
parent ad5c984a46
commit d20a2804ff

View File

@ -363,6 +363,7 @@ form{
.contact-tiles { .contact-tiles {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
align-items: flex-start;
gap: 1rem; gap: 1rem;
justify-content: center; justify-content: center;
max-width: 820px; max-width: 820px;