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
| .cl-column {
| display: flex;
| flex-direction: column;
| position: relative;
|
| &.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-middle {
| align-items: center;
| }
|
| &.is-align-bottom {
| align-items: flex-end;
| }
| }
|
|