Fixed card actions position
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
This commit is contained in:
parent
dd9fd6c166
commit
508467bc6c
|
@ -191,7 +191,7 @@ function stateColor(code) {
|
||||||
}
|
}
|
||||||
|
|
||||||
#descriptor-skeleton .q-card__actions {
|
#descriptor-skeleton .q-card__actions {
|
||||||
justify-content: space-around;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -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}/getCard2`);
|
const { data } = await axios.get(`Clients/${entityId}/getCard`);
|
||||||
|
|
||||||
if (data) customer.value = data;
|
if (data) customer.value = data;
|
||||||
}
|
}
|
||||||
|
@ -191,8 +191,12 @@ async function fetch() {
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.q-card__actions {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
#descriptor-skeleton .q-card__actions {
|
#descriptor-skeleton .q-card__actions {
|
||||||
justify-content: space-around;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -185,7 +185,7 @@ function stateColor(state) {
|
||||||
}
|
}
|
||||||
|
|
||||||
#descriptor-skeleton .q-card__actions {
|
#descriptor-skeleton .q-card__actions {
|
||||||
justify-content: space-around;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue