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

Adjust sizing for Yahoo, Startpage, and Bing logos in search selectio…

…n modals to better match Zeplins
  • Loading branch information
wlycdgr committed Feb 9, 2021
commit 2b4009f482f3060d9203a53aff9cf839ac6ee246
@@ -282,7 +282,10 @@ class ChooseDefaultSearchView extends Component {
const { searchBeingConsidered, otherSearchSelected } = this.state;
const logoFilename = `/app/images/hub/ChooseDefaultSearchView/search-engine-logo-${searchBeingConsidered.toLocaleLowerCase().replace(' ', '')}.svg`;
const modalOptionLogoClassNames = ClassNames('ChooseSearchView__modalOptionLogo', {
ghostery: searchBeingConsidered === SEARCH_GHOSTERY
ghostery: searchBeingConsidered === SEARCH_GHOSTERY,
yahoo: searchBeingConsidered === SEARCH_YAHOO,
bing: searchBeingConsidered === SEARCH_BING,
startpage: searchBeingConsidered === SEARCH_STARTPAGE,
});

return (
@@ -303,6 +303,18 @@
&.ghostery {
width: 266px;
}

&.yahoo {
width: 256px;
}

&.bing {
width: 325px;
}

&.startpage {
width: 235px;
}
}

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