Skip to content

Commit

Permalink
Align KebabMenuIcon with logo, see phetsims/brand#33
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Feb 12, 2019
1 parent 90bcebe commit 6f2d60b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/KebabMenuIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ define( require => {

const shape = new Shape();
for ( let i = 0; i < 3; i++ ) {
shape.circle( 0, i * 3.5 * CIRCLE_RADIUS, CIRCLE_RADIUS ); // args are: x, y, radius
shape.circle( 0, i * 3.543 * CIRCLE_RADIUS, CIRCLE_RADIUS ); // args are: x, y, radius
}

super( shape, options );
Expand Down
2 changes: 1 addition & 1 deletion js/PhetButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ define( function( require ) {
// The menu icon, to the right of the logo
var menuIcon = new KebabMenuIcon( {
left: logoImage.width + 8,
bottom: logoImage.bottom,
bottom: logoImage.bottom - 0.5,
pickable: false
} );

Expand Down

0 comments on commit 6f2d60b

Please sign in to comment.