Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEAT ITEM-248-ecran-de-simulation-penser-a-renommer-notice-suivante-e… #138

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/components/NavigateNotice.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
large
dark
@click="first"
aria-label="Première notice">
aria-label="Première ligne">
<v-icon>mdi-page-first</v-icon>
</v-btn>
</v-row>
<v-row class="d-flex justify-center">
<div style="width: 4em; text-align: center;">Première notice</div>
<div style="width: 4em; text-align: center;">Première ligne</div>
</v-row>
<!--Conteneur bouton 2-->
<v-row class="d-flex justify-center">
Expand All @@ -23,12 +23,12 @@
large
dark
@click="prev"
aria-label="Notice précédente">
aria-label="Ligne précédente">
<v-icon>mdi-chevron-left</v-icon>
</v-btn>
</v-row>
<v-row class="d-flex justify-center">
<div style="width: 5em; text-align: center;">Notice précédente</div>
<div style="width: 5em; text-align: center;">Ligne précédente</div>
</v-row>
<!--Conteneur bouton 3-->
<v-row class="d-flex justify-center">
Expand All @@ -38,12 +38,12 @@
large
dark
@click="next"
aria-label="Notice suivante">
aria-label="Ligne suivante">
<v-icon>mdi-chevron-right</v-icon>
</v-btn>
</v-row>
<v-row class="d-flex justify-center">
<div style="width: 4em; text-align: center;">Notice suivante</div>
<div style="width: 4em; text-align: center;">Ligne suivante</div>
</v-row>
<!--Conteneur bouton 4-->
<v-row class="d-flex justify-center">
Expand All @@ -53,12 +53,12 @@
large
dark
@click="last"
aria-label="Dernière notice">
aria-label="Dernière ligne">
<v-icon>mdi-page-last</v-icon>
</v-btn>
</v-row>
<v-row class="d-flex justify-center">
<div style="width: 4em; text-align: center;">Dernière notice</div>
<div style="width: 4em; text-align: center;">Dernière ligne</div>
</v-row>
</template>
<script setup>
Expand Down
Loading