.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); } }