xwt
2025-07-17 66f29ab451014ca2e72fa9a5ff6373ab507ff67c
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
@import './var';
@import './mixins/hairline';
 
[class*='van-hairline'] {
  &::after {
    .hairline();
  }
}
 
.van-hairline {
  &,
  &--top,
  &--left,
  &--right,
  &--bottom,
  &--surround,
  &--top-bottom {
    position: relative;
  }
 
  &--top::after {
    border-top-width: @border-width-base;
  }
 
  &--left::after {
    border-left-width: @border-width-base;
  }
 
  &--right::after {
    border-right-width: @border-width-base;
  }
 
  &--bottom::after {
    border-bottom-width: @border-width-base;
  }
 
  &,
  &-unset {
    &--top-bottom::after {
      border-width: @border-width-base 0;
    }
  }
 
  &--surround::after {
    border-width: @border-width-base;
  }
}