refactor(stadiums): clean up SVG illustrations and fix image aspect ratio

- Remove card chrome (background rect, text duplicates, accent bars) from all 17 stadium SVGs
- Crop viewBox tightly to illustration (~10px padding) and remove fixed width/height attributes
- Update .stadium-img aspect ratio from 16/9 to 4/3 to match cropped SVG ratios and prevent aggressive object-fit clipping
This commit is contained in:
Lucas Kalil 2026-06-14 01:06:14 -03:00
parent da8a8838c6
commit e94aa09ce5
17 changed files with 615 additions and 193 deletions

View file

@ -755,7 +755,7 @@ button {
.stadium-img {
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
aspect-ratio: 4 / 3;
object-fit: cover;
border-bottom: 1px solid var(--glass-border);
}