repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git]
/
packages
/
styles
/
scss
/
utilities
/
_animations.scss
blob
ddd8567daee5c4931977f4c7c1459aced59d462f
1
@keyframes fadeInUp {
2
from {
3
opacity: 0;
4
transform: translateY(var(--translate-y-from, 10px));
5
}
6
7
to {
8
opacity: 1;
9
transform: translateY(0);
10
}
11
}
12
13
.fade-in-up {
14
animation: fadeInUp 0.4s ease-out;
15
opacity: 0;
16
animation-fill-mode: forwards; /* Reste visible après l'animation */
17
}