Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/admin/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ export default function AdminPage() {
</div>
<div className="w-full bg-gray-200 rounded-full h-2">
<div
className="bg-purple-500 h-2 rounded-full transition-[width] duration-700"
className="bg-purple-500 h-2 rounded-full transition-[width] duration-300"
style={{ width: `${Math.round(stats.completionRate)}%` }}
/>
</div>
Expand All @@ -576,7 +576,7 @@ export default function AdminPage() {
</div>
<div className="w-full bg-gray-200 rounded-full h-2">
<div
className="bg-blue-500 h-2 rounded-full transition-[width] duration-700"
className="bg-blue-500 h-2 rounded-full transition-[width] duration-300"
style={{ width: `${Math.round(stats.shareRate)}%` }}
/>
</div>
Expand Down Expand Up @@ -701,7 +701,7 @@ export default function AdminPage() {

<div className="flex items-center gap-2 mt-3">
<div className="flex-1 bg-green-200 rounded-full h-2">
<div className="bg-green-500 h-2 rounded-full transition-[width] duration-500" style={{
<div className="bg-green-500 h-2 rounded-full transition-[width] duration-300" style={{
width: `${Math.min(100, (stats.activeBills / stats.totalBills) * 100)}%`
}} />
</div>
Expand Down
Loading
Loading