Skip to content

Commit d429c97

Browse files
committed
chore: add fade-in and fade-out
1 parent 377a329 commit d429c97

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

shared/src/css/keyframes.css

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,21 @@
6565
transform: scaleX(1);
6666
}
6767
}
68+
69+
@keyframes fadeIn {
70+
from {
71+
opacity: 0;
72+
}
73+
to {
74+
opacity: 1;
75+
}
76+
}
77+
78+
@keyframes fadeOut {
79+
from {
80+
opacity: 1;
81+
}
82+
to {
83+
opacity: 0;
84+
}
85+
}

0 commit comments

Comments
 (0)