Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(UI): Button alignment in email signup #52132

Merged
merged 5 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions client/src/pages/email-sign-up.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
font-size: 1rem;
}

.email-list-opt {
huyenltnguyen marked this conversation as resolved.
Show resolved Hide resolved
display: flex;
flex-wrap: wrap;
}

@media (min-width: 500px) {
.email-sign-up strong,
.email-sign-up p {
Expand Down
2 changes: 1 addition & 1 deletion 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 (
<Row>
<Row className='email-list-opt'>
huyenltnguyen marked this conversation as resolved.
Show resolved Hide resolved
<Col md={4} mdOffset={2} sm={5} smOffset={1} xs={12}>
<Button
block={true}
Expand Down