Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(demo): bottomSheet grid icon buttons are clipped
Browse files Browse the repository at this point in the history
Fixes #8018.
  • Loading branch information
ThomasBurleson committed Apr 13, 2016
1 parent c48df16 commit 15424ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ <h4>Since <code>clickOutsideToClose = false</code>, drag down or press ESC to cl
<div>
<md-list flex layout="row" layout-align="center center">
<md-list-item ng-repeat="item in items">

<div>
<md-button class="md-grid-item-content" ng-click="listItemClick($index)">
<md-icon md-svg-src="{{item.icon}}"></md-icon>
<div class="md-grid-text"> {{ item.name }} </div>
</md-button>

</div>
</md-list-item>
</md-list>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/components/bottomSheet/demoBasicUsage/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
}

.md-grid-item-content {
height:96px;
height:90px;
padding-top:10px;
}
.md-grid-item-content md-icon {
height: 48px;
Expand Down

0 comments on commit 15424ba

Please sign in to comment.