Issues (576)

src/entities/YoutubeVideo/YoutubeVideo.module.scss (8 issues)

Severity
1
.responsiveVideo {
0 ignored issues
show
Selector responsiveVideo should be written in lowercase with hyphens
Loading history...
2
  position: relative;
0 ignored issues
show
Properties should be ordered box-shadow, height, overflow, padding-bottom, position
Loading history...
3
  padding-bottom: 56.25%;
4
  height: 0;
5
  overflow: hidden;
6
  box-shadow: rgb(3, 12, 51) 0px 20px 25px -5px, rgb(255, 18, 18) 0px 10px 10px -5px;
0 ignored issues
show
Color literals like rgb(255, 18, 18) should only be used in variable declarations; they should be referred to via variable everywhere else.
Loading history...
0px should be written without units as 0
Loading history...
Color literals like rgb(3, 12, 51) should only be used in variable declarations; they should be referred to via variable everywhere else.
Loading history...
7
}
8
9
.responsiveVideo iframe {
0 ignored issues
show
Selector responsiveVideo should be written in lowercase with hyphens
Loading history...
Merge rule .responsiveVideo iframe with rule on line 1
Loading history...
10
  position: absolute;
0 ignored issues
show
Properties should be ordered height, left, position, top, width
Loading history...
11
  top: 0;
12
  left: 0;
13
  width: 100%;
14
  height: 100%;
15
}
16