+
@@ -19,7 +19,4 @@ const $props = defineProps({
a {
font-size: large;
}
-.titleBox {
- padding-bottom: 2%;
-}
diff --git a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue
index 4a7d5243f..873b40898 100644
--- a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue
+++ b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue
@@ -119,6 +119,7 @@ const intrastatColumns = ref([
},
sortable: true,
align: 'left',
+ style: 'width: 10px',
},
{
name: 'amount',
@@ -126,6 +127,7 @@ const intrastatColumns = ref([
field: (row) => toCurrency(row.amount, currency.value),
sortable: true,
align: 'left',
+ style: 'width: 10px',
},
{
name: 'net',
@@ -317,7 +319,7 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`;
-
+
`#/invoice-in/${entityId.value}/${param}`;
-
+
-
+
`#/invoice-in/${entityId.value}/${param}`;
- {{
- toCurrency(entity.totals.totalDueDay, currency)
- }}
+
+ {{ toCurrency(entity.totals.totalDueDay, currency) }}
+
@@ -424,10 +421,17 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`;
.bg {
background-color: var(--vn-accent-color);
}
+@media (min-width: $breakpoint-md) {
+ .summaryBody {
+ .q-card {
+ &.vat {
+ flex: 65%;
+ }
-@media (max-width: $breakpoint-md) {
- .cardSummary .summaryBody > .q-card.vn-two {
- flex: 100%;
+ &.due-day {
+ flex: 30%;
+ }
+ }
}
}