Updated styles on Pwd Recovery page

This commit is contained in:
Frank Johnson
2021-09-11 21:19:34 -04:00
parent 750d10c01d
commit 6a69a1c1bf
2 changed files with 6 additions and 6 deletions

View File

@@ -91,7 +91,7 @@ const MainLayout = ({ children, shouldRemoveFooterInIde }) => {
}
}, [hash, client])
return (
<div>
<div className="min-h-screen flex flex-col">
<header id="cadhub-main-header">
<nav className="flex justify-between h-16 px-4 bg-ch-gray-900">
<ul className="flex items-center">
@@ -197,7 +197,7 @@ const MainLayout = ({ children, shouldRemoveFooterInIde }) => {
open={isLoginModalOpen}
onClose={() => setIsLoginModalOpen(false)}
/>
<main>{children}</main>
<main className="flex-grow bg-ch-gray-800">{children}</main>
{!shouldRemoveFooterInIde && <Footer />}
</div>
)