21 lines
498 B
CSS
21 lines
498 B
CSS
/*!
|
|
* Angular Material Design
|
|
* https://github.com/angular/material
|
|
* @license MIT
|
|
* v0.10.0
|
|
*/
|
|
/* mixin definition ; sets LTR and RTL within the same style call */
|
|
md-content {
|
|
display: block;
|
|
position: relative;
|
|
overflow: auto;
|
|
-webkit-overflow-scrolling: touch; }
|
|
md-content[md-scroll-y] {
|
|
overflow-y: auto;
|
|
overflow-x: hidden; }
|
|
md-content[md-scroll-x] {
|
|
overflow-x: auto;
|
|
overflow-y: hidden; }
|
|
md-content.autoScroll {
|
|
-webkit-overflow-scrolling: auto; }
|