added
This commit is contained in:
parent
122f123ba6
commit
a62258819f
3 changed files with 22 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
<script setup>
|
||||
import NavBar from '@/components/Navbar/NavBar.vue'
|
||||
import Footer from '@/components/Footer/Footer.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
@ -29,6 +30,7 @@ import NavBar from '@/components/Navbar/NavBar.vue'
|
|||
</n-dialog-provider>
|
||||
</n-message-provider>
|
||||
</n-config-provider>
|
||||
<Footer />
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
|
|
|||
12
src/components/Footer/Footer.vue
Normal file
12
src/components/Footer/Footer.vue
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<script setup>
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<n-divider class="mt-10" />
|
||||
<p class="text-center text-muted">Merch tracker 2024 - 2025 </p>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
|
@ -2,6 +2,10 @@
|
|||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.mb-10 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.mb-20 {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
|
@ -53,6 +57,10 @@
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.text-muted {
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.sticky-search-container {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue