Skip to content

Commit

Permalink
feat: add baseContentIn animation
Browse files Browse the repository at this point in the history
  • Loading branch information
keiko233 committed Nov 11, 2023
1 parent 1eb34e0 commit 34cb796
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/assets/styles/page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,19 @@
width: 90%;
// max-width: 850px;
margin: 0 auto;
animation: baseContentIn 0.3s normal 1 forwards;

@keyframes baseContentIn {
0% {
opacity: 0;
transform: translateY(50%) scale(0.9);
}

100% {
opacity: 1;
transform: translateY(0) scale(1);
}
}
}
}
}
Expand Down

0 comments on commit 34cb796

Please sign in to comment.