Skip to content

Commit

Permalink
fix(lazy): fix lazy preloader in iOS 15
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Apr 15, 2022
1 parent 1a45e14 commit 794a625
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/modules/lazy/lazy.less
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
--swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
Expand Down
3 changes: 3 additions & 0 deletions src/modules/lazy/lazy.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
--swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
Expand Down

0 comments on commit 794a625

Please sign in to comment.