[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: ensure footer is visible in firefox (#104)

authored by

sail and committed by
GitHub
b607f69e c1e4c12b

+2 -2
+2 -2
app/components/AppFooter.vue
··· 83 83 : // JS-controlled: fixed position, hidden by default, transition only after mount 84 84 isScrollable 85 85 ? [ 86 - 'fixed bottom-0 left-0 right-0 z-40 translate-y-full', 86 + 'fixed bottom-0 left-0 right-0 z-40', 87 87 isMounted && 'transition-transform duration-300 ease-out', 88 - isVisible && 'translate-y-0', 88 + isVisible ? 'translate-y-0' : 'translate-y-full', 89 89 ] 90 90 : 'mt-auto', 91 91 ]"