Ensure viewport is always full screen

This commit is contained in:
Nick Mowen 2024-01-04 07:13:37 -07:00
parent 60f65bd7ed
commit 211516236b

View File

@ -5,7 +5,7 @@ type TWrapperProps = {
};
const Wrapper = ({ children }: TWrapperProps) => {
return <main className="flex flex-col max-h-screen">{children}</main>;
return <main className="flex flex-col h-screen">{children}</main>;
};
export default Wrapper;