loading.scss 335 Bytes
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2
.loading {
zhanghaozhe committed
3 4 5 6 7 8 9 10 11 12 13 14 15
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  .loading-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    p {
      font-size: 14px;
      margin-top: 12px;
      color: $active;
baiguangyao committed
16
    }
zhanghaozhe committed
17 18
  }
}