Compare commits

...

2 Commits

Author SHA1 Message Date
victorAnumudu cdd6b1beb5 adjustments added 2024-11-07 14:41:26 +01:00
ameye 96cb474288 Merge branch 'auth-layout-change' of WrenchBoard/Users-Wrench into master 2024-11-06 19:37:05 +00:00
+4 -3
View File
@@ -14,7 +14,7 @@ export default function LoginLayout({ slogan, children }) {
return ( return (
<div <div
className={`min-h-screen overflow-y-auto bg-cover bg-center flex flex-col justify-between items-center`} className={`relative min-h-screen overflow-y-auto bg-cover bg-center flex flex-col items-center`}
style={{ style={{
backgroundImage: `url(${countryMode == "NG" ? bgImgNig : bgImgCom})`, backgroundImage: `url(${countryMode == "NG" ? bgImgNig : bgImgCom})`,
}} }}
@@ -28,7 +28,7 @@ export default function LoginLayout({ slogan, children }) {
/> />
</Link> </Link>
</div> </div>
<div className={`h-full w-full grid grid-cols-1 place-content-center`}> <div className={`h-full w-full mb-5 grid grid-cols-1 place-content-center`}>
{/* <div {/* <div
className={`auth-bg hidden xl:block bg-blue-50 relative bg-cover bg-no-repeat border-0 after:content-[''] after:absolute after:inset-0`} className={`auth-bg hidden xl:block bg-blue-50 relative bg-cover bg-no-repeat border-0 after:content-[''] after:absolute after:inset-0`}
style={{backgroundImage: `url(${bgImg})`}} style={{backgroundImage: `url(${bgImg})`}}
@@ -42,7 +42,7 @@ export default function LoginLayout({ slogan, children }) {
</div> </div>
</div> </div>
</div> </div>
<div className='absolute left-0 right-0 bottom-0'>
<div className='w-full shadow-md bg-slate-50 dark:bg-dark-white'> <div className='w-full shadow-md bg-slate-50 dark:bg-dark-white'>
<div className="w-full flex flex-col md:flex-row justify-center items-center px-10 py-2"> <div className="w-full flex flex-col md:flex-row justify-center items-center px-10 py-2">
<div className="flex justify-center items-center"> <div className="flex justify-center items-center">
@@ -83,6 +83,7 @@ export default function LoginLayout({ slogan, children }) {
</p> </p>
</div> </div>
</div> </div>
</div>
</div> </div>
); );