style update

This commit is contained in:
fmtabbara
2021-12-07 21:46:02 +00:00
parent 7b04093cc5
commit 39650de2bd
+2 -4
View File
@@ -14,7 +14,7 @@ export const SignIn = () => {
justifyContent: 'center',
alignItems: 'center',
overflow: 'auto',
bgcolor: (theme) => theme.palette.nym.background.dark,
bgcolor: 'nym.background.dark',
}}
>
<Box
@@ -26,9 +26,7 @@ export const SignIn = () => {
}}
>
{showCreateAccount ? (
<CreateAccountContent
showSignIn={() => setShowCreateAccount(false)}
/>
<CreateAccountContent showSignIn={() => setShowCreateAccount(false)} />
) : (
<SignInContent showCreateAccount={() => setShowCreateAccount(true)} />
)}