diff --git a/src/components/ui/CardSummary.vue b/src/components/ui/CardSummary.vue index 2ec6bea78..cca5cabba 100644 --- a/src/components/ui/CardSummary.vue +++ b/src/components/ui/CardSummary.vue @@ -172,6 +172,8 @@ async function fetch() { .value { color: var(--vn-text-color); overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; } } .header { @@ -210,13 +212,15 @@ async function fetch() { .vn-card-content { display: flex; flex-direction: column; + overflow: hidden; + white-space: nowrap; text-overflow: ellipsis; > div { max-height: 70px; } } -@media (min-width: 1010px) { +@media (min-width: 1150px) { .vn-card-group { flex-direction: row; } diff --git a/src/pages/Entry/Card/EntrySummary.vue b/src/pages/Entry/Card/EntrySummary.vue index 37a28968c..986bf0684 100644 --- a/src/pages/Entry/Card/EntrySummary.vue +++ b/src/pages/Entry/Card/EntrySummary.vue @@ -202,13 +202,15 @@ onMounted(async () => { .card-content { display: flex; flex-direction: column; + overflow: hidden; + white-space: nowrap; text-overflow: ellipsis; > div { max-height: 24px; } } -@media (min-width: 1010px) { +@media (min-width: 1350px) { .card-group { flex-direction: row; } diff --git a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue index 74936f00a..e43302f09 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue @@ -219,8 +219,8 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`; :url="getLink('basic-data')" :text="t('globals.pageTitles.basicData')" /> -