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
.flex-row {
display: flex;
flex-direction: row;
}
.flex-column {
display: flex;
flex-direction: column;
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.flex-grow {
flex-grow: 1;
}
@media (max-width: 799px) {
.flex-row {
flex-wrap: wrap;
}
.nowrap {
flex-wrap: unset !important;
}
}