Skip to content

Commit 278e71a

Browse files
committed
feat: add common animation.scss
1 parent bb728c4 commit 278e71a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/style/animation.scss

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@keyframes fadeIn {
2+
0% {
3+
opacity: 0;
4+
}
5+
6+
100% {
7+
opacity: 1;
8+
}
9+
}
10+
11+
.fade-in {
12+
animation: fadeIn 0.083s linear;
13+
}

0 commit comments

Comments
 (0)