change SMFooter to SMPageFooter

This commit is contained in:
2023-04-24 15:37:11 +10:00
parent 12be354cc9
commit 425a3561ac
2 changed files with 3 additions and 3 deletions

View File

@@ -80,7 +80,7 @@ import SMSocialIcons from "../components/SMSocialIcons.vue";
</script>
<style lang="scss">
.footer {
.page-footer {
flex: 0;
align-items: center;
font-size: 80%;

View File

@@ -8,7 +8,7 @@
</router-view>
</main>
<footer>
<SMFooter />
<SMPageFooter />
</footer>
<SMToastList />
<SMDialogList />
@@ -16,7 +16,7 @@
<script setup lang="ts">
import SMNavbar from "../components/SMNavbar.vue";
import SMFooter from "../components/SMFooter.vue";
import SMPageFooter from "../components/SMPageFooter.vue";
import SMToastList from "../components/SMToastList.vue";
import SMDialogList from "../components/SMDialog";
</script>