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

Commit

Permalink
Merge pull request #50 from robrez/master
Browse files Browse the repository at this point in the history
Use flex-basis of auto to fix IE
  • Loading branch information
bicknellr committed Jan 27, 2016
2 parents 700b88d + 3d03528 commit b125fbd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions paper-tab.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
@apply(--layout-inline);
@apply(--layout-center);
@apply(--layout-center-justified);
@apply(--layout-flex);
@apply(--layout-flex-auto);

position: relative;
padding: 0 12px;
Expand Down Expand Up @@ -95,7 +95,7 @@
}

.tab-content > ::content > a {
@apply(--layout-flex)
@apply(--layout-flex-auto)

height: 100%;
}
Expand Down
5 changes: 4 additions & 1 deletion paper-tabs.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,14 @@
height: 100%;
white-space: nowrap;
overflow: hidden;
@apply(--layout-flex);
@apply(--layout-flex-auto);
}

#tabsContent {
height: 100%;
-moz-flex-basis: auto;
-ms-flex-basis: auto;
flex-basis: auto;
}

#tabsContent.scrollable {
Expand Down

0 comments on commit b125fbd

Please sign in to comment.