0
0
Fork 0

Se hace correccion solicitada en issuecomment-39493

This commit is contained in:
carlosfonseca 2024-01-22 08:44:15 -05:00
parent 9d4d3bf84d
commit 30c90e534c
2 changed files with 4 additions and 3 deletions

View File

@ -119,7 +119,6 @@ const toCustomerCreditCreate = () => {
:is="tableColumnComponents[props.col.name].component" :is="tableColumnComponents[props.col.name].component"
@click="tableColumnComponents[props.col.name].event(props)" @click="tableColumnComponents[props.col.name].event(props)"
class="rounded-borders q-pa-sm" class="rounded-borders q-pa-sm"
style="border: 1px solid red"
v-bind="tableColumnComponents[props.col.name].props(props)" v-bind="tableColumnComponents[props.col.name].props(props)"
> >
{{ props.value }} {{ props.value }}

View File

@ -36,7 +36,9 @@ const toCustomerNoteCreate = () => {
v-for="(item, index) in rows" v-for="(item, index) in rows"
:key="index" :key="index"
:class="{ :class="{
'consignees-card': true, 'q-pa-md': true,
'q-rounded': true,
'custom-border': true,
'q-mb-md': index < rows.length - 1, 'q-mb-md': index < rows.length - 1,
}" }"
> >
@ -82,7 +84,7 @@ const toCustomerNoteCreate = () => {
</template> </template>
<style lang="scss"> <style lang="scss">
.consignees-card { .custom-border {
border: 2px solid var(--vn-light-gray); border: 2px solid var(--vn-light-gray);
border-radius: 10px; border-radius: 10px;
padding: 10px; padding: 10px;