Skip to content

Commit

Permalink
Merge pull request #18 from it-at-m/feature-1493-adjust-next-button
Browse files Browse the repository at this point in the history
feat(ZMS-1493): adjust next button on mobile
  • Loading branch information
manjencic authored Sep 28, 2023
2 parents 7e35906 + 90dd288 commit d24a72d
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions frontend/src/components/CustomerInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,17 @@
</template>
</v-checkbox>

<v-btn id="customer-submit-button" class="button-next" elevation="2" depressed color="primary"
@click="saveCustomer()">
<v-btn
id="customer-submit-button"
class="button-next"
:aria-label="$t('nextToReservation')"
elevation="2"
depressed
color="primary"
@click="saveCustomer()"
>
<span class="desktop">{{ $t('nextToReservation') }}</span>
<span class="mobile">{{ $t('finishReservation') }}</span>
<span class="mobile">{{ $t('next') }}</span>
</v-btn>
</div>
</template>
Expand Down

0 comments on commit d24a72d

Please sign in to comment.