Skip to content

Commit

Permalink
Evenly distributed the icons, see phetsims/tambo#19
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Klusendorf authored and jbphet committed Jul 19, 2018
1 parent a2cbb13 commit 03508e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/NavigationBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ define( function( require ) {
var NAVIGATION_BAR_SIZE = new Dimension2( HomeScreenView.LAYOUT_BOUNDS.width, 40 );
var TITLE_LEFT_MARGIN = 10;
var TITLE_RIGHT_MARGIN = 25;
var PHET_BUTTON_LEFT_MARGIN = 13;
var PHET_BUTTON_LEFT_MARGIN = 9;
var PHET_BUTTON_RIGHT_MARGIN = PhetButton.HORIZONTAL_INSET; // same position as PhetButton on home screen
var PHET_BUTTON_BOTTOM_MARGIN = PhetButton.VERTICAL_INSET; // same position as PhetButton on home screen
var A11Y_BUTTONS_LEFT_MARGIN = 50;
Expand Down Expand Up @@ -161,7 +161,7 @@ define( function( require ) {
this.a11yButtonsHBox = new HBox( {
children: a11yButtons,
align: 'center',
spacing: 5
spacing: 9
} );
if ( a11yButtons.length > 0 ) {
this.barContents.addChild( this.a11yButtonsHBox );
Expand Down

0 comments on commit 03508e6

Please sign in to comment.