From 3b1a585444f1a2e3ac9b3c1725cca4080bff8864 Mon Sep 17 00:00:00 2001 From: MVA Global Fret Date: Tue, 5 May 2026 22:01:08 +0200 Subject: [PATCH] Contact: fix price-reminder spacing (--space-xxl variable did not exist) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/style.css b/css/style.css index 9e53f93..4c96375 100644 --- a/css/style.css +++ b/css/style.css @@ -682,8 +682,8 @@ p { /* --- Rappel tarifaire (page Contact, bloc centré) --- */ .price-reminder { - max-width: 720px; - margin: var(--space-xxl) auto 0; + max-width: 680px; + margin: var(--space-3xl) auto var(--space-xl); background: var(--light-gray); border-radius: var(--radius-md); padding: var(--space-lg) var(--space-xl);