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

GH-2232: localization-related UI fixes #686

Merged
merged 8 commits into from Feb 12, 2021

Improve layout when onboarding view headers break to a second line

  • Loading branch information
wlycdgr committed Feb 11, 2021
commit 6c2c967d4ec766619f04aca23591fed62bb71bc0
@@ -52,13 +52,14 @@
}

.BlockSettingsView__title {
margin-top: 30px;
font-size: 24px;
font-weight: 500;
line-height: 2.33;
line-height: 1.3;
text-align: center;
@include breakpoint(xxlarge down) {
max-width: 580px;
margin: auto;
max-width: 450px;
margin: 30px auto auto auto;
}
}

@@ -371,10 +371,10 @@ class ChooseDefaultSearchView extends Component {
if (!otherSearchOptionsFetched) return null;

return (
<div className="full-height">
<Fragment>
{modalActive && this.renderConfirmationModal()}
{!modalActive && this.renderSearchOptions()}
</div>
</Fragment>
);
}
}
@@ -29,10 +29,8 @@
position: absolute;
display: flex;
width: 68px;
margin-top: 15px;
@include breakpoint(small down) {
margin-top: -21px;
}
margin-top: 22px;

.ChooseSearchView__back {
margin-top: 8px;
font-size: 16px;
@@ -41,7 +39,6 @@
}
}


.ChooseSearchView__title {
font-size: 24px;
font-weight: 500;
ProTip! Use n and p to navigate between commits in a pull request.