Nexus / app /styles /animation.scss
Severian's picture
Upload 269 files
f0499d2
raw
history blame contribute delete
303 Bytes
@keyframes slide-in {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0px);
}
}
@keyframes slide-in-from-top {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0px);
}
}