Footer.vue 382 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="spacer" />
  3. <v-footer no-gutters :height="36">
  4. Olivier Massot, 2024-2025 - Built with Nuxt.js
  5. </v-footer>
  6. </template>
  7. <script setup lang="ts">
  8. </script>
  9. <style scoped lang="scss">
  10. .spacer {
  11. margin-top: 64px;
  12. }
  13. footer {
  14. position: absolute;
  15. bottom: 0;
  16. width: 100%;
  17. height: 50px;
  18. background-color: rgb(var(--v-theme-primary));
  19. }
  20. </style>