Skip to content

Commit

Permalink
fix(docs): fixes label
Browse files Browse the repository at this point in the history
  • Loading branch information
amir20 committed Jan 23, 2025
1 parent 0efd98e commit ad5c1c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/.vitepress/theme/components/Stats.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<template>
<div class="stats mt-10">
<div class="stats stats-horizontal mt-10">
<div class="stat w-40 border-0!">
<div class="stat-title">Github Stars</div>
<div class="stat-title text-(--vp-c-text-1)">Github Stars</div>
<div class="stat-value">
<Counter :start="0" :end="data.stars" :duration="1000" :formatter="(value) => (value / 1e3).toFixed(1) + 'K'" />
</div>
</div>

<div class="stat">
<div class="stat-title">Docker Pulls</div>
<div class="stat-title text-(--vp-c-text-1)">Docker Pulls</div>
<div class="stat-value">
<Counter :start="0" :end="data.pulls" :duration="1000" :formatter="(value) => (value / 1e6).toFixed(0) + 'M'" />
</div>
Expand Down

0 comments on commit ad5c1c4

Please sign in to comment.