From 1f5e4bd771bf77918ba2c287ac0cc6f0cf881d10 Mon Sep 17 00:00:00 2001 From: Jon Date: Fri, 4 Apr 2025 06:58:24 +0200 Subject: [PATCH] perf: use grid template instead of flex in card-group --- src/components/ui/CardSummary.vue | 14 ++--- src/pages/InvoiceIn/Card/InvoiceInSummary.vue | 47 ++-------------- src/pages/Travel/Card/TravelSummary.vue | 54 ++----------------- src/pages/Zone/ZoneList.vue | 2 +- 4 files changed, 13 insertions(+), 104 deletions(-) diff --git a/src/components/ui/CardSummary.vue b/src/components/ui/CardSummary.vue index cca5cabba..927e3d666 100644 --- a/src/components/ui/CardSummary.vue +++ b/src/components/ui/CardSummary.vue @@ -205,8 +205,9 @@ async function fetch() { } .vn-card-group { - display: flex; - flex-direction: column; + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 16px; } .vn-card-content { @@ -219,15 +220,6 @@ async function fetch() { max-height: 70px; } } - -@media (min-width: 1150px) { - .vn-card-group { - flex-direction: row; - } - .vn-card-content { - flex: 1; - } -} es: diff --git a/src/pages/Travel/Card/TravelSummary.vue b/src/pages/Travel/Card/TravelSummary.vue index 79e79a0ad..22e2cff86 100644 --- a/src/pages/Travel/Card/TravelSummary.vue +++ b/src/pages/Travel/Card/TravelSummary.vue @@ -291,8 +291,8 @@ onMounted(async () => { :url="getLink('basic-data')" :text="t('globals.pageTitles.basicData')" /> -
-
+
+
{ size="sm" />
-
+
{ size="sm" />
-
+
@@ -432,49 +432,3 @@ onMounted(async () => { - diff --git a/src/pages/Zone/ZoneList.vue b/src/pages/Zone/ZoneList.vue index 6d2247e30..8d7c4a165 100644 --- a/src/pages/Zone/ZoneList.vue +++ b/src/pages/Zone/ZoneList.vue @@ -146,7 +146,7 @@ const columns = computed(() => [ { title: t('components.smartCard.viewSummary'), icon: 'preview', - action: (row) => viewSummary(row.id, ZoneSummary, 'lg-width'), + action: (row) => viewSummary(row.id, ZoneSummary), isPrimary: true, }, {