From dd9fd6c166df0b54ce5b6ffcffddf3bc3e252697 Mon Sep 17 00:00:00 2001 From: joan Date: Thu, 3 Nov 2022 08:23:16 +0100 Subject: [PATCH] Card skeleton position fixed --- src/pages/Customer/Card/CustomerCard.vue | 6 +++--- src/pages/Ticket/Card/TicketCard.vue | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/pages/Customer/Card/CustomerCard.vue b/src/pages/Customer/Card/CustomerCard.vue index 29642f02f..83586ca66 100644 --- a/src/pages/Customer/Card/CustomerCard.vue +++ b/src/pages/Customer/Card/CustomerCard.vue @@ -20,7 +20,7 @@ const customer = ref(null); async function fetch() { const entityId = route.params.id; - const { data } = await axios.get(`Clients/${entityId}/getCard`); + const { data } = await axios.get(`Clients/${entityId}/getCard2`); if (data) customer.value = data; } @@ -191,8 +191,8 @@ async function fetch() { justify-content: space-between; } - .q-card__actions { - justify-content: center; + #descriptor-skeleton .q-card__actions { + justify-content: space-around; } } diff --git a/src/pages/Ticket/Card/TicketCard.vue b/src/pages/Ticket/Card/TicketCard.vue index edfe47fce..159ab879e 100644 --- a/src/pages/Ticket/Card/TicketCard.vue +++ b/src/pages/Ticket/Card/TicketCard.vue @@ -183,5 +183,9 @@ function stateColor(state) { .q-card__actions { justify-content: center; } + + #descriptor-skeleton .q-card__actions { + justify-content: space-around; + } }