Skip to content

Commit 67dba62

Browse files
committed
Added animations on routes
1 parent 44f49de commit 67dba62

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

assets/css/demo.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
my-app .main-panel .main-content *{
2+
animation-duration: 750ms;
3+
opacity: 0;
4+
animation-name: fadeIn;
5+
animation-fill-mode: forwards;
6+
}
7+
8+
@keyframes fadeIn {
9+
from {
10+
opacity: 0;
11+
}
12+
13+
to {
14+
opacity: 1;
15+
}
16+
}
117
@media (min-width: 992px){
218
.typo-line{
319
padding-left: 140px;

0 commit comments

Comments
 (0)