| 123456789101112131415161718192021222324 |
- <template>
- <div class="spacer" />
- <v-footer no-gutters :height="36">
- Olivier Massot, 2024-2025 - Built with Nuxt.js
- </v-footer>
- </template>
- <script setup lang="ts">
- </script>
- <style scoped lang="scss">
- .spacer {
- margin-top: 64px;
- }
- footer {
- position: absolute;
- bottom: 0;
- width: 100%;
- height: 50px;
- background-color: rgb(var(--v-theme-primary));
- }
- </style>
|