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

Move ghostery logo on search option selection container a little to t…

…he left
  • Loading branch information
benstrumeyer committed Feb 2, 2021
commit fe1225ceb650d9326d9d5ac910013a777dc07abe
@@ -234,6 +234,9 @@ class ChooseDefaultSearchView extends Component {
const selected = (chosenSearch === optionName);
const containerClasses = ClassNames('ChooseSearchView__optionContainer', { selected });
const logoFilename = `/app/images/hub/ChooseDefaultSearchView/search-engine-logo-${optionName.toLocaleLowerCase()}.svg`;
const optionDescriptionContainerClassNames = ClassNames('ChooseSearchView__optionDescriptionContainer', {
ghostery: optionName === SEARCH_GHOSTERY
});

return (
<div
@@ -254,7 +257,7 @@ class ChooseDefaultSearchView extends Component {
)
}
</div>
<div className="ChooseSearchView__optionDescriptionContainer">
<div className={optionDescriptionContainerClassNames}>
{(optionName !== SEARCH_OTHER) && (
<img src={logoFilename} />
)}
@@ -110,6 +110,10 @@
justify-content: center;
width: 75%;
padding-right: 15%;

&.ghostery {
margin-left: -14px;
}
}

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