Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Nuri/fix : Fix gap on signup page #1896

Merged
1 commit merged into from
Jul 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/custom/_agreement-label.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const AgreementLabel = ({ handleChangeCheckbox, isChecked, color }) => {
fontWeight: 'normal',
lineHeight: '1px',
marginTop: '5px',
marginBottom: '20px',
marginBottom: '0',
}}
>
<Checkbox
Expand Down
9 changes: 5 additions & 4 deletions src/components/custom/_signup-new.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ const EmailButton = styled(Button)`
margin-bottom: 0.4rem;
margin-top: 3.2rem;

@media ${device.tabletL} {
margin-top: 24px;
}

@media ${device.mobileL} {
font-size: 1.75rem;
}
Expand Down Expand Up @@ -269,10 +273,7 @@ const SignupNew = ({
required
/>
</InputGroup>
<AgreementLabel
isChecked={is_checked}
handleChangeCheckbox={handleChange}
/>
<AgreementLabel isChecked={is_checked} handleChangeCheckbox={handleChange} />
<EmailButton
isChecked={is_checked}
type="submit"
Expand Down