Skip to content

Commit 6e02439

Browse files
authored
Merge pull request #463 from devforth/feature/AdminForth/1206/fix-bar-chart-on-live-demo
fix: adjust chart dimensions for better visibility in live demo
2 parents d6778e5 + 1a30cdd commit 6e02439

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

live-demo/app/custom/Dashboard.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="px-4 py-4 bg-blue-50 dark:bg-gray-900 dark:shadow-none min-h-screen">
33

44
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
5-
<div class="max-w-md w-full bg-white rounded-lg shadow dark:bg-gray-800 p-4 md:p-5" v-if="data">
5+
<div class="max-w-md w-full bg-white rounded-lg shadow dark:bg-gray-800 p-4 md:p-5 flex flex-col justify-between" v-if="data">
66
<div>
77
<h5 class="leading-none text-3xl font-bold text-gray-900 dark:text-white pb-2">{{ data.totalAparts }}</h5>
88
<p class="text-base font-normal text-gray-500 dark:text-gray-400">{{ $t('Apartment last 7 days | Apartments last 7 days', data.totalAparts) }}</p>
@@ -83,7 +83,7 @@
8383
}]"
8484
:options="{
8585
chart: {
86-
height: 500,
86+
height: 650,
8787
},
8888
xaxis: {
8989
labels: { show: true },

0 commit comments

Comments
 (0)