Skip to content

Commit

Permalink
Adhere to latest stylelint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
kapoko committed Feb 3, 2022
1 parent 16c6b11 commit db48558
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions scss/animations/_chop.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}

&:nth-child(2) {
opacity: 100%;
opacity: 1;
transform-origin: 15% 50%;
}

Expand All @@ -33,7 +33,7 @@
}

&:nth-child(2) {
opacity: 0%;
opacity: 0;
transform: scale(0);
}

Expand Down
2 changes: 1 addition & 1 deletion scss/animations/_collapse.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
}

&:nth-child(2) {
opacity: 0%;
opacity: 0;
}

&:nth-child(3) {
Expand Down
4 changes: 2 additions & 2 deletions scss/animations/_converge.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}

&:nth-child(2) {
opacity: 100%;
opacity: 1;
transform-origin: 20% 50%;
}

Expand All @@ -33,7 +33,7 @@
}

&:nth-child(2) {
opacity: 0%;
opacity: 0;
transform: scale(0);
}

Expand Down
6 changes: 3 additions & 3 deletions scss/animations/_criss-cross.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
&::after {
@include hamburger-bar;

opacity: 0%;
opacity: 0;
transform-origin: 0 50%;
transition:
opacity math.div(0.4s, $hamburger-animation-speed) $hamburger-easing,
Expand Down Expand Up @@ -45,7 +45,7 @@
> .inner {
&::before,
&::after {
opacity: 100%;
opacity: 1;
}

&::before {
Expand All @@ -60,7 +60,7 @@
}

span.bar {
opacity: 0%;
opacity: 0;
transform: translate3d(-10px, 0, 0);
width: 50%;

Expand Down
2 changes: 1 addition & 1 deletion scss/animations/_minimal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}

&:nth-child(2) {
opacity: 0%;
opacity: 0;
transform: translate3d(0, math.round(-$hamburger-bar-spacing * 0.8), 0);
}
}
Expand Down
2 changes: 1 addition & 1 deletion scss/animations/_shelf.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
}

&:nth-child(2) {
opacity: 0%;
opacity: 0;
transform: scaleX(0);
}

Expand Down
2 changes: 1 addition & 1 deletion scss/animations/_spin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
}

&:nth-child(2) {
opacity: 0%;
opacity: 0;
transform: rotate(45deg);
}

Expand Down
2 changes: 1 addition & 1 deletion scss/animations/_stack.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
}

&:nth-child(2) {
opacity: 0%;
opacity: 0;
}

&:nth-child(3) {
Expand Down
4 changes: 2 additions & 2 deletions scss/animations/_twist.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}

&:nth-child(2) {
opacity: 100%;
opacity: 1;
transition:
opacity math.div(0.2s, $hamburger-animation-speed)
$hamburger-easing math.div(0.4s, $hamburger-animation-speed);
Expand All @@ -37,7 +37,7 @@
}

&:nth-child(2) {
opacity: 0%;
opacity: 0;
transition: opacity 0.3s $hamburger-easing;
}

Expand Down

0 comments on commit db48558

Please sign in to comment.