UNPKG

@nutui/nutui-react-taro

Version:

京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序

47 lines (46 loc) 913 B
/* #ifdef harmony */ /* #endif */ /* #ifndef harmony */ /* #endif */ .nut-loading { display: inline-flex; flex-direction: row; align-items: center; justify-content: center; } .nut-loading-vertical { flex-direction: column; } .nut-loading .nut-loading-icon-box { display: inline-block; font-size: 0; line-height: 0; animation: nut-loading-rotation 1s infinite linear; } .nut-loading .nut-loading-icon-box .nut-loading-icon { color: #888b94; width: 12px; height: 12px; font-size: 12px; } .nut-loading .nut-loading-lottie-box { width: 56px; height: 56px; border-radius: 8px; background: rgba(0, 0, 0, 0.06); } .nut-loading .nut-loading-text { color: #888b94; font-size: 12px; } .nut-loading-vertical .nut-loading-text { padding-top: 8px; } @keyframes nut-loading-rotation { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } }