zhangyong
2023-08-22 1353e87cb21a4032d585d7404bae9042f2ebcf08
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
@use 'mixins/mixins' as *;
@use 'mixins/var' as *;
@use 'common/var' as *;
 
@include b(result) {
  @include set-component-css-var('result', $result);
}
 
@include b(result) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
  padding: getCssVar('result-padding');
 
  @include e(icon) {
    svg {
      width: getCssVar('result-icon-font-size');
      height: getCssVar('result-icon-font-size');
    }
  }
 
  @include e(title) {
    margin-top: getCssVar('result-title-margin-top');
 
    p {
      margin: 0;
      font-size: getCssVar('result-title-font-size');
      color: getCssVar('text-color', 'primary');
      line-height: 1.3;
    }
  }
 
  @include e(subtitle) {
    margin-top: getCssVar('result-subtitle-margin-top');
 
    p {
      margin: 0;
      font-size: getCssVar('font-size', 'base');
      color: getCssVar('text-color', 'regular');
      line-height: 1.3;
    }
  }
 
  @include e(extra) {
    margin-top: getCssVar('result-extra-margin-top');
  }
 
  @each $type in $types {
    .icon-#{$type} {
      @include css-var-from-global(('result', 'color'), ('color', $type));
      color: getCssVar('result-color');
    }
  }
}