Added wallpaper to the Authentication Page

This commit was merged in pull request #4.
This commit is contained in:
2023-10-19 04:44:38 -07:00
parent c92644222e
commit 5d4cbc7a1c
6 changed files with 36 additions and 26 deletions
+11 -2
View File
@@ -44,7 +44,9 @@ const Layout = ({ children }) => {
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
</Head>
<div className={`main-wrapper-content ${active ? "active" : ""}`}>
<div className={`main-wrapper-content ${active ? "active" : ""}`} style={{
paddingLeft: isAuthenticationPage && "0",
}}>
{!isAuthenticationPage && (
<>
<TopNavbar toggleActive={toggleActive} />
@@ -52,7 +54,14 @@ const Layout = ({ children }) => {
</>
)}
<div className="main-content">{children}</div>
<div
className="main-content"
style={{
paddingRight: isAuthenticationPage && "0",
}}
>
{children}
</div>
{!isAuthenticationPage && <Footer />}
</div>