Skip to content

Commit

Permalink
style: update
Browse files Browse the repository at this point in the history
  • Loading branch information
afeiship committed Oct 20, 2020
1 parent c5c2cfc commit 7811fb8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 29 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 4 additions & 14 deletions dist/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,13 @@ $react-fade-image-options: (
$duration: map-get( $map: $react-fade-image-options, $key: duration );

@keyframes react-fade-image-fade-in {
0% {
opacity: 0;
}

100% {
opacity: 1;
}
0% { opacity: 0; }
100% { opacity: 1; }
}

@keyframes react-fade-image-fade-out {
0% {
opacity: 1;
}

100% {
opacity: 0;
}
0% { opacity: 1; }
100% { opacity: 0; }
}

&.loaded-true,
Expand Down
18 changes: 4 additions & 14 deletions src/components/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,13 @@ $react-fade-image-options: (
$duration: map-get( $map: $react-fade-image-options, $key: duration );

@keyframes react-fade-image-fade-in {
0% {
opacity: 0;
}

100% {
opacity: 1;
}
0% { opacity: 0; }
100% { opacity: 1; }
}

@keyframes react-fade-image-fade-out {
0% {
opacity: 1;
}

100% {
opacity: 0;
}
0% { opacity: 1; }
100% { opacity: 0; }
}

&.loaded-true,
Expand Down

0 comments on commit 7811fb8

Please sign in to comment.