From 4647a829425b352a06d7e849bcba8bbec051bef6 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Wed, 19 Aug 2026 21:15:53 +0200 Subject: [PATCH] fix(settings): remove max-width cap on settings pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .settings-page was capped at 56rem, leaving Compte, Préférences alimentaires (foyer), and Préférences utilisateur cramped in a narrow centered column on wide viewports. Drop the max-width/margin so the content fills .app-content's full width like other pages. --- apps/web/src/pages/settings/settings-pages.scss | 8 -------- 1 file changed, 8 deletions(-) diff --git a/apps/web/src/pages/settings/settings-pages.scss b/apps/web/src/pages/settings/settings-pages.scss index 4ba5a24..138a9a1 100644 --- a/apps/web/src/pages/settings/settings-pages.scss +++ b/apps/web/src/pages/settings/settings-pages.scss @@ -8,15 +8,7 @@ // household/regime/allergies page was split in three. // ============================================================================= -// Centered column, not pinned to the content area's left edge — on a wide -// desktop viewport that left plenty of unused space beside these forms. -// Wide enough to give grids (the allergy checkboxes, the ingredient -// picker's category chips) real room, still well short of `.app-content`'s -// full width so line lengths/inputs don't stretch edge-to-edge. .settings-page { - max-width: 56rem; - margin: 0 auto; - &__status { color: var(--color-text-muted); font-size: var(--font-size-md);