Skip to content

Commit

Permalink
fix: margin verticale main
Browse files Browse the repository at this point in the history
  • Loading branch information
ocruze committed Sep 11, 2024
1 parent 6452808 commit f8715c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/components/Layout/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ const AppLayout: FC<PropsWithChildren<AppLayoutProps>> = ({ children, navItems,
<>
<HiddenElementsMemoized />
<AppHeader navItems={navItems} />
<main id="main" role="main" className={fr.cx("fr-my-2w")}>
<main id="main" role="main">
{/* doit être le premier élément atteignable après le lien d'évitement (Accessibilité) : https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/bandeau-d-information-importante */}
{infoBannerMsg && <Notice title={infoBannerMsg} isClosable={true} />}

<div className={fr.cx("fr-container")}>
<div className={fr.cx("fr-container", "fr-my-2w")}>
{breadcrumbProps && <Breadcrumb {...breadcrumbProps} />}

<div className={fr.cx("fr-mb-4v")}>
Expand Down

0 comments on commit f8715c9

Please sign in to comment.