Skip to content

Commit a2e504f

Browse files
committed
Remove ripple loading mixin
1 parent 5afbaf5 commit a2e504f

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

components/_mixins.scss

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -251,24 +251,3 @@
251251
transition-timing-function: $animation-curve-default;
252252
transition-duration: $duration;
253253
}
254-
255-
// The frames are this way to prevent a flicker in Safari
256-
// See https://goo.gl/5luFDk
257-
@mixin ripple-loading($name, $width, $height, $opacity: 0.3) {
258-
@keyframes #{$name} {
259-
0% {
260-
opacity: $opacity;
261-
transform: translate3d(-50%, -50%, 0) scale(0);
262-
}
263-
264-
95% {
265-
opacity: 0;
266-
transform: translate3d(-50%, -50%, 0) scale(1);
267-
}
268-
269-
100% {
270-
opacity: 0;
271-
transform: translate3d(-50%, -50%, 0) scale(0);
272-
}
273-
}
274-
}

0 commit comments

Comments
 (0)