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>
<div class="form-button"> <div class="form-button">
<Button type="link" block onClick={(e) => actions.onLogin()}> <div class="form-login">
Account Login <Button type="link" block onClick={(e) => actions.onLogin()}>
</Button> Account Login
</Button>
</div>
</div> </div>
</Form> </Form>

View File

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