We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e85d108 commit 4adee46Copy full SHA for 4adee46
src/lib/slider/slider.scss
@@ -94,7 +94,9 @@ md-slider {
94
.md-slider-sliding {
95
.md-slider-track-fill,
96
.md-slider-thumb-container {
97
- transition: none;
+ // Must use `transition-duration: 0ms` to disable animation rather than `transition: none`.
98
+ // On Mobile Safari `transition: none` causes the slider thumb to appear stuck.
99
+ transition-duration: 0ms;
100
}
101
102
0 commit comments