Improve images display on mobile #53

This commit is contained in:
Timothée Goguely 2024-12-11 12:25:45 +01:00
parent ac82ee65d7
commit be089ba47b
4 changed files with 34 additions and 1 deletions

View file

@ -5,8 +5,9 @@
:to="'/' + page.parent"
class="btn btn--white"
data-icon="arrow-left"
aria-labelledby="back-to-project"
>
<span>Retour au projet</span>
<span id="back-to-project">Retour au projet</span>
</router-link>
<button class="btn | ml-auto">Valider et envoyer le brief</button>
</header>
@ -47,3 +48,11 @@ function setInitialStep() {
if (hasImages) return "Images";
}
</script>
<style scoped>
@media (max-width: 540px) {
#back-to-project {
display: none;
}
}
</style>