Skip to content

Commit

Permalink
Merge pull request #1924 from amit-webkul/dashboard-lead-ui
Browse files Browse the repository at this point in the history
🛠️ [v2.0] : Fixed Issue #1798
  • Loading branch information
devansh-webkul authored Jan 10, 2025
2 parents c981375 + 82f6415 commit 78e64a2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ class="w-full max-w-full items-end px-12"
class="flex w-full flex-col border-b border-gray-200 pb-[9px] pt-2.5 last:border-none dark:border-gray-800"
v-for="(stat, index) in report.statistics"
>
<span class="text-sm font-semibold dark:text-gray-300">
<span class="text-sm font-semibold dark:text-gray-100">
@{{ stat.total }}
</span>
<span class="text-sm font-semibold dark:text-gray-300">
<span class="text-sm font-semibold dark:text-gray-100">
@{{ stat.name }}
</span>
</li>
Expand Down Expand Up @@ -139,7 +139,7 @@ class="dark:mix-blend-exclusion dark:invert"
// Create gradient
const gradient = ctx.createLinearGradient(0, 0, 0, 400);
gradient.addColorStop(0, 'rgba(144, 247, 236, 1)');
gradient.addColorStop(0, 'rgba(144, 247, 236, 0.8)');
gradient.addColorStop(1, 'rgba(50, 204, 188, 1)');
this.chart = new Chart(ctx, {
Expand Down

0 comments on commit 78e64a2

Please sign in to comment.