diff --git a/src/styles/components/scroll.less b/src/styles/components/scroll.less index 0d1e378c9..ac5a0d6ed 100644 --- a/src/styles/components/scroll.less +++ b/src/styles/components/scroll.less @@ -12,20 +12,21 @@ overflow-y: scroll; } - @keyframes ani-stop-slide { - from { - overflow-y: hidden; - tansform:translateZ(0); - } - to { - overflow-y: scroll; - tansform:translateZ(0); - } - } - - &-container-loading { - animation: ani-stop-slide 1.5s; - } + @keyframes ani-stop-slide { + from { + overflow-y: hidden; + transform: translateZ(0); + } + + to { + overflow-y: scroll; + transform: translateZ(0); + } + } + + &-container-loading { + animation: ani-stop-slide 1.5s; + } &-content { opacity: 1; @@ -59,9 +60,11 @@ from { transform: rotate(0deg); } + 50% { transform: rotate(180deg); } + to { transform: rotate(360deg); } @@ -77,6 +80,5 @@ } @media (max-width: @screen-sm) { - .@{scroll-prefix-cls} { - } -} + .@{scroll-prefix-cls} {} +} \ No newline at end of file