diff --git a/src/views/JournalView.vue b/src/views/JournalView.vue index ed0e782..a40f417 100644 --- a/src/views/JournalView.vue +++ b/src/views/JournalView.vue @@ -21,95 +21,98 @@ @@ -118,7 +121,6 @@
Brak dalszych wyników dla podanych parametrów
Pobieranie kolejnych wyników...
- @@ -265,7 +267,7 @@ export default defineComponent({ const element = this.$refs.scrollElement as HTMLElement; if ( - element.getBoundingClientRect().bottom * 0.9 < window.innerHeight && + element.getBoundingClientRect().bottom * 0.85 < window.innerHeight && this.scrollDataLoaded && !this.scrollNoMoreData ) @@ -385,6 +387,7 @@ export default defineComponent({ @import '../styles/responsive.scss'; @import '../styles/option.scss'; +// Animations .warning { &-enter-from, &-leave-to { @@ -400,6 +403,18 @@ export default defineComponent({ } } +.history-list-anim { + &-enter-active, + &-leave-active { + transition: all 0.5s ease; + } + + &-enter-from, + &-leave-to { + opacity: 0; + } +} + .history-view { height: 100%;