Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #4535 from brave/home-button
Browse files Browse the repository at this point in the history
Fix home button alignment
  • Loading branch information
bbondy authored Oct 5, 2016
2 parents ca1ce40 + 3254434 commit 395c1fa
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions js/components/navigationBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,15 +126,15 @@ class NavigationBar extends ImmutableComponent {
className='navbutton reload-button'
onClick={this.onReload} />
}
{
!this.titleMode && getSetting(settings.SHOW_HOME_BUTTON)
? <Button iconClass='fa-home'
l10nId='homeButton'
className='navbutton homeButton'
onClick={this.onHome} />
: null
}
</div>
{
!this.titleMode && getSetting(settings.SHOW_HOME_BUTTON)
? <Button iconClass='fa-home'
l10nId='homeButton'
className='navbutton homeButton'
onClick={this.onHome} />
: null
}
<UrlBar ref='urlBar'
sites={this.props.sites}
activeFrameKey={this.props.activeFrameKey}
Expand Down

0 comments on commit 395c1fa

Please sign in to comment.