Skip to content

Commit

Permalink
fix(demo-app) move menu icon inside of a button (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahyos authored and jelbourn committed May 13, 2016
1 parent c29b79d commit 7323e89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/demo-app/demo-app.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
<div>

<md-toolbar color="primary">
<md-icon (click)="start.open()">menu</md-icon>
<button md-icon-button (click)="start.open()">
<md-icon class="md-24" >menu</md-icon>
</button>
<div class="demo-toolbar">
<h1>Angular Material 2 Demos</h1>
<button md-button (click)="root.dir = (root.dir == 'rtl' ? 'ltr' : 'rtl')" title="Toggle between RTL and LTR">
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/demo-app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

md-toolbar {
md-icon {
padding: 20px;
cursor: pointer;
}

Expand Down

0 comments on commit 7323e89

Please sign in to comment.