diff --git a/todoblue/src/app/[lang]/(layout)/Body.module.css b/todoblue/src/app/[lang]/(layout)/Body.module.css index cbbf4bf..c017759 100644 --- a/todoblue/src/app/[lang]/(layout)/Body.module.css +++ b/todoblue/src/app/[lang]/(layout)/Body.module.css @@ -1,4 +1,4 @@ -.appBody { +.body { min-width: 100svw; min-height: 100svh; diff --git a/todoblue/src/app/[lang]/(layout)/Body.tsx b/todoblue/src/app/[lang]/(layout)/Body.tsx index 854ea0d..15ec4b8 100644 --- a/todoblue/src/app/[lang]/(layout)/Body.tsx +++ b/todoblue/src/app/[lang]/(layout)/Body.tsx @@ -4,7 +4,7 @@ import style from "./Body.module.css" export function Body({children}: {children: ReactNode}) { return ( - + {children} )