啊鑫
8 天以前 fca192d3c38c5dcfbb6ace8bc71d6078f6a079b2
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
@import '../style/var';
 
.van-row {
  &::after {
    display: table;
    clear: both;
    content: '';
  }
 
  &--flex {
    display: flex;
    flex-wrap: wrap;
 
    &::after {
      display: none;
    }
  }
 
  &--justify-center {
    justify-content: center;
  }
 
  &--justify-end {
    justify-content: flex-end;
  }
 
  &--justify-space-between {
    justify-content: space-between;
  }
 
  &--justify-space-around {
    justify-content: space-around;
  }
 
  &--align-center {
    align-items: center;
  }
 
  &--align-bottom {
    align-items: flex-end;
  }
}