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

Onboarding spreadsheet bugs #38 (GH-2259), #44 (GH-2306), and #45 (GH-2305) #675

Merged
merged 16 commits into from Mar 17, 2021
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Make ghostery glow icon bigger in select default search modal

  • Loading branch information
benstrumeyer committed Feb 2, 2021
commit 6c964ec5221e01ab0e8f58813ff88ff8b7dea326
@@ -269,6 +269,9 @@ class ChooseDefaultSearchView extends Component {
renderConfirmationModal = () => {
const { searchBeingConsidered, otherSearchSelected } = this.state;
const logoFilename = `/app/images/hub/ChooseDefaultSearchView/search-engine-logo-${searchBeingConsidered.toLocaleLowerCase()}.svg`;
const modalOptionLogoClassNames = ClassNames('ChooseSearchView__modalOptionLogo', {
ghostery: searchBeingConsidered === SEARCH_GHOSTERY
});

return (
<Modal show>
@@ -280,7 +283,7 @@ class ChooseDefaultSearchView extends Component {
{SEARCH_OTHER}
</div>
) :
<img className="ChooseSearchView__modalOptionLogo" src={logoFilename} />
<img className={modalOptionLogoClassNames} src={logoFilename} />
}
<div className="ChooseSearchView__modalDescription">
{searchBeingConsidered === SEARCH_STARTPAGE && t('ghostery_dawn_onboarding_startpage_warning')}
@@ -288,7 +288,11 @@
}

.ChooseSearchView__modalOptionLogo {
padding: 70px 0;
padding: 70px 0;

&.ghostery {
width: 266px;
}
}

.ChooseSearchView__modalDescription {
ProTip! Use n and p to navigate between commits in a pull request.