forked from verdnatura/salix-front
Fixed card actions position
This commit is contained in:
parent
dd9fd6c166
commit
508467bc6c
|
@ -191,7 +191,7 @@ function stateColor(code) {
|
|||
}
|
||||
|
||||
#descriptor-skeleton .q-card__actions {
|
||||
justify-content: space-around;
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -20,7 +20,7 @@ const customer = ref(null);
|
|||
async function fetch() {
|
||||
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;
|
||||
}
|
||||
|
@ -191,8 +191,12 @@ async function fetch() {
|
|||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.q-card__actions {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#descriptor-skeleton .q-card__actions {
|
||||
justify-content: space-around;
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -185,7 +185,7 @@ function stateColor(state) {
|
|||
}
|
||||
|
||||
#descriptor-skeleton .q-card__actions {
|
||||
justify-content: space-around;
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue