We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1e4c12 commit b607f69Copy full SHA for b607f69
1 file changed
app/components/AppFooter.vue
@@ -83,9 +83,9 @@ onUnmounted(() => {
83
: // JS-controlled: fixed position, hidden by default, transition only after mount
84
isScrollable
85
? [
86
- 'fixed bottom-0 left-0 right-0 z-40 translate-y-full',
+ 'fixed bottom-0 left-0 right-0 z-40',
87
isMounted && 'transition-transform duration-300 ease-out',
88
- isVisible && 'translate-y-0',
+ isVisible ? 'translate-y-0' : 'translate-y-full',
89
]
90
: 'mt-auto',
91
]"
0 commit comments