Newer
Older
MARTIN Pierre-Alexandre
committed
<script setup lang="ts">
</script>
<template>
<footer>
<p>© 2025 3SPA</p>
<p>Accessibilité : non conforme</p>
<p><a href="">Conditions générales de ventes</a></p>
<p><a href="">Conditions générales d'utilisation</a></p>
</footer>
</template>
MARTIN Pierre-Alexandre
committed
<style>
footer {
position: fixed;
bottom: 0;
padding-left: 8px;
width: 100%;
MARTIN Pierre-Alexandre
committed
display: flex;
background-color: var(--color-background-500);
MARTIN Pierre-Alexandre
committed
}
MARTIN Pierre-Alexandre
committed
footer > p {
margin: 1vh;
color: var(--color-secondary-500);
MARTIN Pierre-Alexandre
committed
}