forked from verdnatura/salix-front
Card skeleton position fixed
This commit is contained in:
parent
1706c01b8e
commit
dd9fd6c166
|
@ -20,7 +20,7 @@ const customer = ref(null);
|
||||||
async function fetch() {
|
async function fetch() {
|
||||||
const entityId = route.params.id;
|
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;
|
if (data) customer.value = data;
|
||||||
}
|
}
|
||||||
|
@ -191,8 +191,8 @@ async function fetch() {
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
.q-card__actions {
|
#descriptor-skeleton .q-card__actions {
|
||||||
justify-content: center;
|
justify-content: space-around;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -183,5 +183,9 @@ function stateColor(state) {
|
||||||
.q-card__actions {
|
.q-card__actions {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#descriptor-skeleton .q-card__actions {
|
||||||
|
justify-content: space-around;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue