fix(other): minor changes to other modules.

This commit is contained in:
Nicolas Drolet 2025-12-12 15:12:42 -05:00
parent 34f1ce5762
commit 6606ebb992
5 changed files with 9 additions and 7 deletions

View File

@ -79,8 +79,8 @@
<q-tab-panels
v-model="current_step"
animated
:transition-prev="$q.screen.lt.sm ? 'jump-down' : 'jump-left'"
:transition-next="$q.screen.lt.sm ? 'jump-up' : 'jump-right'"
:transition-prev="$q.screen.lt.sm ? 'jump-down' : 'jump-right'"
:transition-next="$q.screen.lt.sm ? 'jump-up' : 'jump-left'"
class="bg-transparent full-height"
>
<q-tab-panel

View File

@ -22,7 +22,8 @@
</div>
<div
class="col-auto row justify-center content-center q-mb-sm q-pa-sm rounded-5"
class="col-auto justify-center content-center q-mb-sm q-pa-sm rounded-5"
:class="ui_store.is_mobile_mode ? 'column' : 'row'"
style="border: 1px solid var(--q-accent);"
>
<q-item

View File

@ -24,7 +24,7 @@
class="col-auto"
/>
<div class="row col full-width">
<div class="col full-width" :class="$q.screen.lt.sm ? 'column' : 'row'">
<div
class="col-auto q-pa-xs bg-dark rounded-5 shadow-2"
:class="$q.screen.lt.md ? 'q-mb-sm' : 'q-mr-sm'"
@ -41,7 +41,7 @@
<q-card
class="col"
:class="$q.screen.lt.md ? 'full-width' : 'q-ml-sm'"
:class="$q.screen.lt.sm ? 'full-width' : 'q-ml-sm'"
>
<q-tab-panels
v-model="current_menu"

View File

@ -18,7 +18,8 @@
<template>
<q-list
dense
class="row full-width"
class="full-width"
:class="ui_store.is_mobile_mode ? 'column' : 'row'"
>
<q-item
v-for="locale in $i18n.availableLocales"

View File

@ -24,7 +24,7 @@ import { onMounted } from 'vue';
<q-page class="bg-secondary row items-center justify-center">
<MenuEmployee
v-if="employee_roles.includes(auth_store.user?.role.toUpperCase() ?? 'GUEST')"
class="col-sm-12 col-md-10 col-lg-7 col-xl-5"
class="col-xs-12 col-md-10 col-lg-7 col-xl-5"
/>
</q-page>
</template>