From 5f3d2477807823352f83cd477b5d7d27d4b33432 Mon Sep 17 00:00:00 2001 From: Nicolas KOKLA Date: Wed, 25 Sep 2024 00:03:25 +0200 Subject: [PATCH 01/10] Fix : Layout integration --- src/app/layout.tsx | 6 +++--- src/layouts/Breadcrumb.tsx | 8 ++++---- src/layouts/Header.tsx | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 729fa9fa8..78904e804 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -12,7 +12,7 @@ import Breadcrumb from '@/layouts/Breadcrumb' import { defaultColorScheme } from '@/theme/defaultColorScheme' import styled, { ThemeProvider } from 'styled-components' import StyledComponentsRegistry from '@/providers/StyledComponentsRegistry' -import theme from '@/theme/theme' +import theme from '@/theme' import GlobalStyle from './global.styles' import { useEffect } from 'react' import { init as matomoInit } from '@socialgouv/matomo-next' @@ -21,7 +21,7 @@ import { BALWidgetProvider } from '@/contexts/BALWidget.context' const StyledLayout = styled.div` min-height: 100vh; display: grid; - grid-template-rows: auto 1fr auto; + grid-template-rows: auto auto 1fr auto; .pageWrapper { display: flex; @@ -63,7 +63,7 @@ export default function RootLayout({ children }: { children: JSX.Element }) {
- + {/* */} {children}