Skip to content

Commit

Permalink
feat: add common animation.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
wewoor committed Nov 5, 2020
1 parent bb728c4 commit 278e71a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/style/animation.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@keyframes fadeIn {
0% {
opacity: 0;
}

100% {
opacity: 1;
}
}

.fade-in {
animation: fadeIn 0.083s linear;
}

0 comments on commit 278e71a

Please sign in to comment.