纸通宝小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

33 lines
535 B

.jan-refresh--node {
width: 100%;
height: 50px;
background-color: var(--bg-color);
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.jan-refresher--safety-block {
width: 2rpx;
height: 2rpx;
bottom: -2rpx;
position: absolute;
}
.jan-refresher--icon.refreshing {
transition: all 0.3s;
animation: rotate 0.5s linear infinite;
}
@keyframes rotate {
0% {
transform: rotate(0);
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}