Add back to top button

This commit is contained in:
Blossomi Shymae
2024-10-11 16:39:30 -05:00
parent 87f5d432b2
commit a63ac8ca47
11 changed files with 86 additions and 32 deletions

View File

@@ -0,0 +1,13 @@
<script setup lang="ts">
const scrollTop = () => {
window.scrollTo(0, 0);
};
</script>
<template>
<div>
<NuxtLink class="btn app-background text-light" @click="scrollTop">
<MaterialIcon name="arrow-up" :size="24"/> Back to top
</NuxtLink>
</div>
</template>