Skip to content
Closed
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 src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export default function Dashboard() {
</div>
<div className="flex gap-4 max-w-fit">
<Card className="border-border min-w-[250px]">
<CardContent className="p-3">
<CardContent className="px-[22px] py-3">
<div className="flex items-center gap-2 mb-1">
<span className="text-sm text-muted-foreground">Number of tickets solved</span>
<HelpCircle className="w-3 h-3 text-muted-foreground" />
Expand All @@ -213,7 +213,7 @@ export default function Dashboard() {
</CardContent>
</Card>
<Card className="border-border min-w-[250px]">
<CardContent className="p-3">
<CardContent className="px-[22px] py-3">
<div className="flex items-center gap-2 mb-1">
<span className="text-sm text-muted-foreground">Total time spent</span>
<HelpCircle className="w-3 h-3 text-muted-foreground" />
Expand All @@ -222,7 +222,7 @@ export default function Dashboard() {
</CardContent>
</Card>
<Card className="border-border min-w-[250px]">
<CardContent className="p-3">
<CardContent className="px-[22px] py-3">
<div className="flex items-center gap-2 mb-1">
<span className="text-sm text-muted-foreground">Percentage solved</span>
<HelpCircle className="w-3 h-3 text-muted-foreground" />
Expand Down