spacing on mobile landscape (#11397)

This commit is contained in:
Josh Hawkins
2024-05-16 11:51:57 -05:00
committed by GitHub
parent 525de1a467
commit dd0dee620a
6 changed files with 30 additions and 9 deletions

View File

@@ -5,7 +5,7 @@ type TWrapperProps = {
};
const Wrapper = ({ children }: TWrapperProps) => {
return <main className="h-dvh w-screen overflow-hidden">{children}</main>;
return <main className="h-dvh w-full overflow-hidden">{children}</main>;
};
export default Wrapper;