Issues (576)

src/styles/animations.scss (11 issues)

1
.fade-enter {
2
  opacity: 0;    
0 ignored issues
show
Line contains trailing whitespace
Loading history...
3
  transform: translateX(10%);
4
  
0 ignored issues
show
Line contains trailing whitespace
Loading history...
5
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
6
.fade-enter-active {  
0 ignored issues
show
Line contains trailing whitespace
Loading history...
7
  transform: translateX(0%);
0 ignored issues
show
Properties should be ordered opacity, transform
Loading history...
8
  opacity: 1;
9
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
10
.fade-exit {
11
  opacity: 1;
12
  transform: translateX(0%);
13
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
14
.fade-exit-active {
15
  opacity: 0;
16
  transform: translateX(-100%);
17
  transform-origin: left;
18
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
19
.fade-enter-active,
20
.fade-exit-active {
21
  transition: opacity 500ms ease-out, transform 500ms ease-out;
22
}
23
24
// poster
25
.poster-enter {
26
  transform: rotate(0deg) translate(100%, -20px) scale(0);
27
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
28
.poster-enter-active {
29
  transform: rotate(355deg) translate(0, -20px) scale(1);
30
  transition: transform 1000ms cubic-bezier(.5,1.26,.64,1);
0 ignored issues
show
Commas in function arguments should be followed by one space
Loading history...
31
  transition-delay: 0.5s;
0 ignored issues
show
0.5 should be written without a leading zero as .5
Loading history...
32
}
33