File tree 4 files changed +4
-27
lines changed
4 files changed +4
-27
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,7 @@ const DeleteAccount: React.FC = () => {
22
22
Permanently delete your data and everything associated with your
23
23
account.
24
24
</ Text >
25
- < Button
26
- bg = "ui.danger"
27
- color = "white"
28
- _hover = { { opacity : 0.8 } }
29
- mt = { 4 }
30
- onClick = { confirmationModal . onOpen }
31
- >
25
+ < Button variant = "danger" mt = { 4 } onClick = { confirmationModal . onOpen } >
32
26
Delete
33
27
</ Button >
34
28
< DeleteConfirmation
Original file line number Diff line number Diff line change @@ -127,13 +127,7 @@ function Login() {
127
127
Forgot password?
128
128
</ Link >
129
129
</ Center >
130
- < Button
131
- bg = "ui.main"
132
- color = "white"
133
- _hover = { { opacity : 0.8 } }
134
- type = "submit"
135
- isLoading = { isSubmitting }
136
- >
130
+ < Button variant = "primary" type = "submit" isLoading = { isSubmitting } >
137
131
Log In
138
132
</ Button >
139
133
</ Container >
Original file line number Diff line number Diff line change @@ -82,13 +82,7 @@ function RecoverPassword() {
82
82
< FormErrorMessage > { errors . email . message } </ FormErrorMessage >
83
83
) }
84
84
</ FormControl >
85
- < Button
86
- bg = "ui.main"
87
- color = "white"
88
- _hover = { { opacity : 0.8 } }
89
- type = "submit"
90
- isLoading = { isSubmitting }
91
- >
85
+ < Button variant = "primary" type = "submit" isLoading = { isSubmitting } >
92
86
Continue
93
87
</ Button >
94
88
</ Container >
Original file line number Diff line number Diff line change @@ -124,12 +124,7 @@ function ResetPassword() {
124
124
< FormErrorMessage > { errors . confirm_password . message } </ FormErrorMessage >
125
125
) }
126
126
</ FormControl >
127
- < Button
128
- bg = "ui.main"
129
- color = "white"
130
- _hover = { { opacity : 0.8 } }
131
- type = "submit"
132
- >
127
+ < Button variant = "primary" type = "submit" >
133
128
Reset Password
134
129
</ Button >
135
130
</ Container >
You can’t perform that action at this time.
0 commit comments