Footer.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <v-footer no-gutters :height="36" class="footer">
  3. <div class="footer-content">
  4. <span>© La Sauvagerie 2024 - Location de vacances en Normandie</span>
  5. <span class="divider">|</span>
  6. <NuxtLink to="/mentions-legales" class="legal-link">Mentions légales</NuxtLink>
  7. </div>
  8. </v-footer>
  9. </template>
  10. <script setup lang="ts">
  11. </script>
  12. <style scoped lang="scss">
  13. .footer {
  14. background-color: rgba(var(--v-theme-card-background), 0.65) !important;
  15. color: rgb(var(--v-theme-on-background)) !important;
  16. text-align: center;
  17. font-size: 0.85rem;
  18. backdrop-filter: blur(5px);
  19. box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
  20. border-top: 1px solid rgba(255, 255, 255, 0.3);
  21. border-radius: 0;
  22. margin: 0;
  23. width: 100%;
  24. .footer-content {
  25. width: 100%;
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. padding: 8px 0;
  30. @media (max-width: 600px) {
  31. flex-direction: column;
  32. .divider {
  33. display: none;
  34. }
  35. }
  36. .divider {
  37. margin: 0 12px;
  38. }
  39. .legal-link {
  40. color: rgb(var(--v-theme-on-background));
  41. text-decoration: none;
  42. &:hover {
  43. text-decoration: underline;
  44. color: rgb(var(--v-theme-primary));
  45. }
  46. }
  47. }
  48. }
  49. </style>