Skip to content

Commit

Permalink
Merge pull request #124 from abes-esr/FEAT_Amélioration_de_la_lisibil…
Browse files Browse the repository at this point in the history
…ité_de_la_page_de_simulation

FEAT_Amélioration_de_la_lisibilité_de_la_page_de_simulation
  • Loading branch information
SamuelQuetin authored Sep 19, 2024
2 parents c72d555 + 3f54ad5 commit f28f802
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/components/Simulation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
<v-row class="pt-5">
<v-col cols="12" sm="12" md="5"> <!--Exemplaires existants-->
<!--Carte activée si présence exemplaires pour cette notice-->
<v-card class="pa-1" outlined tile>
<h5 class="d-flex justify-center">{{ labelBefore }}</h5>
<v-card class="pa-1 ml-1" outlined tile>
<h5 class="d-flex justify-center border-b-md">{{ labelBefore }}</h5>
<v-container id="scroll-target" style="max-height: 400px" class="overflow-auto">
<pre style="text-align: left" class="py-4">{{ noticeAvant }}</pre>
</v-container>
Expand All @@ -39,9 +39,11 @@
<navigate-notice v-model="nbNotice" @clicked="refresh()"></navigate-notice>
</v-col>
<v-col cols="12" sm="12" md="5"> <!--Exemplaire à créer-->
<v-card class="pa-1" outlined tile>
<h5 class="d-flex justify-center">{{ labelAfter }}</h5>
<pre style="text-align: left" class="py-4 overflow-auto">{{ noticeApres }}</pre>
<v-card class="pa-1 mr-1" outlined tile>
<h5 class="d-flex justify-center border-b-md">{{ labelAfter }}</h5>
<v-container id="scroll-target" style="max-height: 400px" class="overflow-auto">
<pre style="text-align: left" class="py-4">{{ noticeApres }}</pre>
</v-container>
</v-card>
</v-col>
</v-row>
Expand Down

0 comments on commit f28f802

Please sign in to comment.