(css) Fix display of tabs with oversized content

This commit is contained in:
Francis Lachapelle 2016-11-30 12:09:11 -05:00
parent cd08ab81f1
commit a1746cd386

View file

@ -1 +1,10 @@
@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;
}