Skip to content

Commit

Permalink
replace Container with Row
Browse files Browse the repository at this point in the history
  • Loading branch information
huyenltnguyen committed Nov 6, 2023
1 parent f181b67 commit c35c6d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/pages/email-sign-up.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function EmailListOptIn({
const { t } = useTranslation();
if (isSignedIn) {
return (
<Container className='email-list-opt'>
<Row className='email-list-opt'>
<Col md={4} mdOffset={2} sm={5} smOffset={1} xs={12}>
<Button
block={true}
Expand All @@ -86,7 +86,7 @@ function EmailListOptIn({
</Button>
<Spacer size='small' />
</Col>
</Container>
</Row>
);
} else {
return (
Expand Down

0 comments on commit c35c6d2

Please sign in to comment.