mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-17 16:05:32 +01:00
animates scroll to bottom and debounces bottom
This commit is contained in:
parent
779f142058
commit
a5afd5c48f
9 changed files with 130 additions and 31 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue