Files
Brandy Carney 7a8d5f68d2 chore(stylelint): remove sass-lint/scss-lint in favor of stylelint
- remove scss-lint and sass-lint
- add stylelint and stylelint-order packages and configuration
- update all *.scss files to new syntax

fixes #14805
2018-07-19 15:10:30 -05:00

34 lines
520 B
SCSS

@import "../../themes/ionic.globals";
:host {
@include position(0, 0, 0, 0);
display: block;
position: absolute;
contain: size style layout;
z-index: $z-index-scroll-content;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
will-change: scroll-position;
}
:host(.overscroll)::before,
:host(.overscroll)::after {
position: absolute;
width: 1px;
height: 1px;
content: "";
}
:host(.overscroll)::before {
bottom: -1px;
}
:host(.overscroll)::after {
top: -1px;
}