Skip to content

Commit 4671633

Browse files
authored
Merge pull request #3357 from Harshit-7373/Solved-issue-#2605
Solved the Unnecessary Gap in the Accounts Settings Page. Solved issue - #2605
2 parents ff6b05c + 380808c commit 4671633

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

client/modules/User/components/AccountForm.jsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,10 @@ function AccountForm() {
9797
{t('AccountForm.EmailSent')}
9898
</span>
9999
) : (
100-
<Button onClick={handleInitiateVerification}>
100+
<Button
101+
onClick={handleInitiateVerification}
102+
className="form__resend-button"
103+
>
101104
{t('AccountForm.Resend')}
102105
</Button>
103106
)}

client/styles/components/_forms.scss

+3
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@
109109
text-align: left;
110110
margin-top: #{math.div(15, $base-font-size)}rem;
111111
}
112+
.form__resend-button {
113+
margin-top: #{math.div(8, $base-font-size)}rem;
114+
}
112115

113116
.form__status {
114117
@include themify() {

0 commit comments

Comments
 (0)