Files
2015-08-24 13:01:39 -05:00

27 lines
476 B
SCSS

// Content
// --------------------------------------------------
$content-background-color: $background-color !default;
ion-content {
position: relative;
display: block;
flex: 1;
background-color: $content-background-color;
.scroll-content {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
will-change: scroll-position;
}
}