Blame view

node_modules/element-ui/packages/theme-chalk/src/statistic.scss 782 Bytes
7820380e   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  @import "mixins/mixins";
  @import "common/var";
  
  @include b(statistic) {
    $statistic-justify: center;
    $statistic-align: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: $--color-black;
    font-variant: tabular-nums;
    list-style: none;
    font-feature-settings: "tnum";
    text-align: center;
    .head {
      margin-bottom: 4px;
      color: $--color-text-regular;
      font-size: $--font-size-small;
    }
  
    .con {
      font-family: Sans-serif;
      display: flex;
      justify-content: $statistic-justify;
      align-items: $statistic-align;
      color: $--color-text-primary;
      .number {
        font-size: $--font-size-extra-large;
        padding: 0 4px;
      }
      span {
        display: inline-block;
        margin: 0;
        line-height: 100%;
      }
    }
  }