Skip to content

Commit

Permalink
fix(tabs): set correct min-width on mobile devices (#1351)
Browse files Browse the repository at this point in the history
Tabs on mobile devices have a min-width of 72px.

Closes #1350
  • Loading branch information
dasois authored and kara committed Oct 11, 2016
1 parent e7b872a commit e270e50
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/lib/tabs/tab-group.scss
Expand Up @@ -38,6 +38,12 @@ $md-tab-bar-height: 48px !default;
}
}

@media ($md-xsmall) {
.md-tab-label {
min-width: 72px;
}
}

.md-tab-disabled {
cursor: default;
pointer-events: none;
Expand Down

0 comments on commit e270e50

Please sign in to comment.