mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
chore(build): rename ionic directory to src and update all references in the build process.
This commit is contained in:
37
src/components/scroll/scroll.scss
Normal file
37
src/components/scroll/scroll.scss
Normal file
@@ -0,0 +1,37 @@
|
||||
@import "../../globals.core";
|
||||
|
||||
ion-scroll {
|
||||
position: relative;
|
||||
display: block;
|
||||
|
||||
&.scroll-x scroll-content {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
&.scroll-y scroll-content {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
&[center] {
|
||||
scroll-content {
|
||||
display: flex;
|
||||
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user