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> </script>
<style lang="scss"> <style lang="scss">
.footer { .page-footer {
flex: 0; flex: 0;
align-items: center; align-items: center;
font-size: 80%; font-size: 80%;

View File

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