Contact: fix price-reminder spacing (--space-xxl variable did not exist)

J'utilisais --space-xxl qui n'existe pas dans le système (les vraies
variables sont --space-2xl/3xl). Du coup margin-top tombait à 0 et le
bloc collait au formulaire.

Corrigé : margin-top=96px (--space-3xl) + max-width réduit à 680px
pour un meilleur centrage visuel.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
MVA Global Fret 2026-05-05 22:01:08 +02:00
parent baa71149b2
commit 3b1a585444

View File

@ -682,8 +682,8 @@ p {
/* --- Rappel tarifaire (page Contact, bloc centré) --- */ /* --- Rappel tarifaire (page Contact, bloc centré) --- */
.price-reminder { .price-reminder {
max-width: 720px; max-width: 680px;
margin: var(--space-xxl) auto 0; margin: var(--space-3xl) auto var(--space-xl);
background: var(--light-gray); background: var(--light-gray);
border-radius: var(--radius-md); border-radius: var(--radius-md);
padding: var(--space-lg) var(--space-xl); padding: var(--space-lg) var(--space-xl);