Global color schema, remove name and register number access in preferences, add alert in first startup wizard

This commit is contained in:
2024-11-26 20:13:54 +01:00
parent 7c78226864
commit ac21e8d607
26 changed files with 68 additions and 85 deletions

View File

@@ -53,7 +53,7 @@ const showOrderingDialog = ref()
prepend-icon="mdi-basket-check"
:disabled="basketStore.itemsInBasket.length == 0 || accountStore.userAccount.id == null"
variant="outlined"
color="green"
color="success"
@click="showOrderingDialog = true"
>
{{ $t('order.takeOrder') }}

View File

@@ -100,7 +100,7 @@ function paymentItemProps(item: PaymentModel) {
@click="doOrder"
:loading="orderingInProgress"
prepend-icon="mdi-send"
color="green"
color="success"
>
{{ $t('order.takeOrder') }}
</outlined-button>

View File

@@ -56,7 +56,7 @@ function removeFromBasket(basketItem: BasketItemModel) {
<v-btn
icon="mdi-delete"
@click="removeFromBasket(basketItem)"
color="red"
color="error"
variant="text"
flat
/>