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
58
59
| .cl-row {
| position: relative;
| box-sizing: border-box;
|
| &::after,
| &::before {
| content: "";
| display: table;
| }
|
| &::after {
| clear: both;
| }
|
| &--flex {
| display: flex;
|
| &::after,
| &::before {
| display: none;
| }
| }
|
| &.is-justify-start {
| justify-content: flex-start;
| }
|
| &.is-justify-center {
| justify-content: center;
| }
|
| &.is-justify-end {
| justify-content: flex-end;
| }
|
| &.is-justify-space-between {
| justify-content: space-between;
| }
|
| &.is-justify-space-around {
| justify-content: space-around;
| }
|
| &.is-align-top {
| align-items: flex-start;
| }
|
| &.is-align-center {
| align-items: center;
| }
|
| &.is-align-bottom {
| align-items: flex-end;
| }
|
| &.is-wrap {
| flex-wrap: wrap;
| }
| }
|
|