Issues (576)

src/styles/utility/flex.scss (9 issues)

Severity
1
.flex {
2
  display: flex;
3
}
4
5
.flexInline {
0 ignored issues
show
Selector flexInline should be written in lowercase with hyphens
Loading history...
6
  display: inline-flex;
7
}
8
9
.flexWrap {
0 ignored issues
show
Selector flexWrap should be written in lowercase with hyphens
Loading history...
10
  flex-wrap: wrap;
11
}
12
13
.flexCol {
0 ignored issues
show
Selector flexCol should be written in lowercase with hyphens
Loading history...
14
  flex-direction: column;
15
}
16
17
.flexJustBet {
0 ignored issues
show
Selector flexJustBet should be written in lowercase with hyphens
Loading history...
18
  justify-content: space-between;
19
}
20
21
.flexJustCent {
0 ignored issues
show
Selector flexJustCent should be written in lowercase with hyphens
Loading history...
22
  justify-content: center;
23
}
24
25
.flexAlStart {
0 ignored issues
show
Selector flexAlStart should be written in lowercase with hyphens
Loading history...
26
  align-items: flex-start;
27
}
28
29
.flexAlEnd {
0 ignored issues
show
Selector flexAlEnd should be written in lowercase with hyphens
Loading history...
30
  align-items: flex-end;
31
}
32
33
.flexAlCent {
0 ignored issues
show
Selector flexAlCent should be written in lowercase with hyphens
Loading history...
34
  align-items: center;
35
}
36
37
.flexGrow1 {
0 ignored issues
show
Selector flexGrow1 should be written in lowercase with hyphens
Loading history...
38
  flex-grow: 1;
39
}
40