(css) Fix display of tabs with oversized content

pull/228/head
Francis Lachapelle 2016-11-30 12:09:11 -05:00
parent cd08ab81f1
commit a1746cd386
1 changed files with 10 additions and 1 deletions

View File

@ -1 +1,10 @@
@import 'extends';
@import 'extends';
/**
* This is a fix to make the tab resized to the surrounding md-content when
* its content is too large. Initially observed with events and tasks lists
* in the Calendar module and Angular Material 1.1.1.
*/
md-tab-content > div {
overflow: hidden;
}