animates scroll to bottom and debounces bottom

This commit is contained in:
Daniel Avila 2023-02-13 20:13:59 -05:00
parent 779f142058
commit a5afd5c48f
9 changed files with 130 additions and 31 deletions

View file

@ -7,6 +7,27 @@
outline: 1px solid limegreen !important;
} */
.scroll-down-enter {
opacity: 0;
}
.scroll-down-appear {
opacity: 0;
}
.scroll-down-enter-active {
opacity: 1;
transition: opacity 650ms;
}
.scroll-down-exit {
opacity: 1;
}
.scroll-down-exit-active {
opacity: 0;
transition: opacity 650ms;
}
.blink {
animation: blink 1s linear infinite;
}