Blame view

src/style/loading.module.scss 417 Bytes
5d134410   张志伟   🐱 feat(*): init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  .loading-progress {
    width: 120px;
    height: 22px;
    border-radius: 20px;
    color: var(--color-loading-bar, #514b82);
    border: 2px solid;
    position: relative;
  }
  .loading-progress::before {
    content: '';
    position: absolute;
    margin: 2px;
    inset: 0 100% 0 0;
    border-radius: inherit;
    background: var(--color-loading-bar, #514b82);
    animation: p6 2s infinite;
  }
  
  @keyframes p6 {
    100% {
      inset: 0;
    }
  }