added new create account screen

This commit is contained in:
Roland Osborne 2022-08-04 22:59:57 -07:00
parent 78fe7f3cb2
commit b57314b29a
2 changed files with 11 additions and 5 deletions

View File

@ -64,9 +64,11 @@ export function CreateAccount() {
</div>
<div class="form-button">
<Button type="link" block onClick={(e) => actions.onLogin()}>
Account Login
</Button>
<div class="form-login">
<Button type="link" block onClick={(e) => actions.onLogin()}>
Account Login
</Button>
</div>
</div>
</Form>

View File

@ -40,7 +40,7 @@ export const CreateAccountWrapper = styled.div`
flex: 2;
.form-space {
height: 16px;
height: 8px;
}
.form-button {
@ -48,9 +48,13 @@ export const CreateAccountWrapper = styled.div`
align-items: center;
justify-content: center;
.form-login {
.form-create {
width: 50%;
}
.form-login {
padding-bottom: 8px;
}
}
}