保誠-保戶業務員媒合平台
tomasysh
2025-01-02 4efb98f2b554b76270b12837db7a7f724e2ede89
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 "common/var";
@import "mixins/mixins";
@import "mixins/utils";
 
@include b(row) {
  position: relative;
  box-sizing: border-box;
  @include utils-clearfix;
 
  @include m(flex) {
    display: flex;
    &:before,
    &:after {
      display: none;
    }
 
    @include when(justify-center) {
      justify-content: center;
    }
    @include when(justify-end) {
      justify-content: flex-end;
    }
    @include when(justify-space-between) {
      justify-content: space-between;
    }
    @include when(justify-space-around) {
      justify-content: space-around;
    }
 
    @include when(align-top) {
      align-items: flex-start;
    }
 
    @include when(align-middle) {
      align-items: center;
    }
    @include when(align-bottom) {
      align-items: flex-end;
    }
  }
 
}