1 | .flex { |
||
2 | display: flex; |
||
3 | } |
||
4 | |||
5 | .flexInline { |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
6 | display: inline-flex; |
||
7 | } |
||
8 | |||
9 | .flexWrap { |
||
0 ignored issues
–
show
|
|||
10 | flex-wrap: wrap; |
||
11 | } |
||
12 | |||
13 | .flexCol { |
||
0 ignored issues
–
show
|
|||
14 | flex-direction: column; |
||
15 | } |
||
16 | |||
17 | .flexJustBet { |
||
0 ignored issues
–
show
|
|||
18 | justify-content: space-between; |
||
19 | } |
||
20 | |||
21 | .flexJustCent { |
||
0 ignored issues
–
show
|
|||
22 | justify-content: center; |
||
23 | } |
||
24 | |||
25 | .flexAlStart { |
||
0 ignored issues
–
show
|
|||
26 | align-items: flex-start; |
||
27 | } |
||
28 | |||
29 | .flexAlEnd { |
||
0 ignored issues
–
show
|
|||
30 | align-items: flex-end; |
||
31 | } |
||
32 | |||
33 | .flexAlCent { |
||
0 ignored issues
–
show
|
|||
34 | align-items: center; |
||
35 | } |
||
36 | |||
37 | .flexGrow1 { |
||
0 ignored issues
–
show
|
|||
38 | flex-grow: 1; |
||
39 | } |
||
40 |