mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
25 lines
395 B
SCSS
25 lines
395 B
SCSS
ion-scroll {
|
|
position: relative;
|
|
display: block;
|
|
&.scroll-x .scroll-content {
|
|
overflow-x: auto;
|
|
}
|
|
&.scroll-y .scroll-content {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.scroll-content {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow-y: hidden;
|
|
overflow-x: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
will-change: scroll-position;
|
|
|
|
}
|
|
|
|
}
|