fix bug auth pages

This commit is contained in:
Alihaghighattalab
2024-08-06 11:51:55 +03:30
parent d7b66b11a0
commit 66c89cf14f
13 changed files with 14 additions and 13 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import { Outlet } from "react-router-dom"
export const AuthLayout = () => {
return (
<section
className="flex flex-row h-screen p-5 justify-center items-center xl:justify-stretch xl:items-stretch max-h-[750px]">
className="flex flex-row min-h-screen p-5 justify-center items-center xl:justify-stretch xl:items-stretch max-h-[750px] overflow-y-hidden">
<Outlet />
</section>
)