Card skeleton position fixed
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2022-11-03 08:23:16 +01:00
parent 1706c01b8e
commit dd9fd6c166
2 changed files with 7 additions and 3 deletions

View File

@ -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;
}
}
</style>

View File

@ -183,5 +183,9 @@ function stateColor(state) {
.q-card__actions {
justify-content: center;
}
#descriptor-skeleton .q-card__actions {
justify-content: space-around;
}
}
</style>