Skip to content

Instantly share code, notes, and snippets.

View katzefudder's full-sized avatar
😼
I invented a timemachine next week

Florian Dehn katzefudder

😼
I invented a timemachine next week
View GitHub Profile
@katzefudder
katzefudder / ScrollTop.vue
Created July 10, 2025 10:25
Scroll to the top
<template>
<div
class="scroll-top"
:class="{ active: isVisible }"
@click="scrollToTop"
>
<i class="fas fa-chevron-up"></i>
</div>
</template>