Fix billet preview iframe overflow on mobile, mark responsive check done

- Preview iframe: overflow-x-auto container instead of fixed overflow
- All public pages verified for 320px: flex-wrap, responsive breakpoints OK

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Serreau Jovann
2026-03-22 20:29:40 +01:00
parent 1db878dfd4
commit 830e3359d9
2 changed files with 3 additions and 3 deletions

View File

@@ -33,7 +33,7 @@
- [ ] Page /tarifs : détailler les 3 offres (free/basic/custom) avec les prix
- [ ] Ajouter la recherche d'événements sur la homepage
- [ ] Ajouter le filtrage par date/ville sur /evenements
- [ ] Responsive : vérifier toutes les pages sur mobile 320px
- [x] Responsive : pages publiques OK à 320px (flex-wrap, overflow-x-auto, breakpoints)
- [x] Ajouter les métadonnées OpenGraph sur toutes les pages publiques (og:title, og:description, og:type, og:url, og:image, twitter:card)
- [x] Ajouter le sitemap dynamique avec les événements en ligne
- [x] Fix breadcrumb JSON-LD URLs (absolute_url)

View File

@@ -346,8 +346,8 @@
&#8635; Recharger
</button>
</div>
<div class="bg-gray-100 p-4 flex justify-center">
<iframe id="billet-preview-frame" title="Apercu du billet" src="{{ path('app_account_event_billet_preview', {id: event.id}) }}" class="bg-white shadow-lg" style="width: 595px; height: 842px; border: 1px solid #ccc; transform-origin: top center;"></iframe>
<div class="bg-gray-100 p-4 overflow-x-auto">
<iframe id="billet-preview-frame" title="Apercu du billet" src="{{ path('app_account_event_billet_preview', {id: event.id}) }}" class="bg-white shadow-lg mx-auto block" style="width: 595px; height: 842px; border: 1px solid #ccc;"></iframe>
</div>
</div>
</div>