Issues (576)

src/styles/utility/margins.scss (5 issues)

1
.mlAuto {
0 ignored issues
show
Selector mlAuto should be written in lowercase with hyphens
Loading history...
2
  margin-left: auto;
3
}
4
5
.mrAuto {
0 ignored issues
show
Selector mrAuto should be written in lowercase with hyphens
Loading history...
6
  margin-right: auto;
7
}
8
9
.mbAuto {
0 ignored issues
show
Selector mbAuto should be written in lowercase with hyphens
Loading history...
10
  margin-bottom: auto;
11
}
12
13
.mtAuto {
0 ignored issues
show
Selector mtAuto should be written in lowercase with hyphens
Loading history...
14
  margin-top: auto;
15
}
16
17
// TOP
18
.mt32 {
19
  margin-top: 32px;
20
  
0 ignored issues
show
Line contains trailing whitespace
Loading history...
21
}
22
// BOTTOM
23
.mb12 {
24
  margin-bottom: 12px;
25
}
26
27
.mb24 {
28
  margin-bottom: 24px;
29
}
30
31
.mb32 {
32
  margin-bottom: 32px;
33
}
34