Skip to content

Commit c0bdd8b

Browse files
fix: update icon sizes for better visibility (#585)
Co-authored-by: Tanner Linsley <[email protected]>
1 parent 6011aef commit c0bdd8b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/components/Navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export function Navbar({ children }: { children: React.ReactNode }) {
109109
) : null}
110110
{canAdmin ? (
111111
<div className="flex items-center gap-2 px-2 py-1 rounded-lg">
112-
<Lock />
112+
<Lock size={16} />
113113
<Link
114114
to="/admin"
115115
className="flex-1 text-sm font-medium text-gray-700 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white"

src/components/UserFeedbackSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function UserFeedbackSection({ userId }: UserFeedbackSectionProps) {
8282
className="text-sm text-blue-600 dark:text-blue-400 hover:text-blue-700 dark:hover:text-blue-300 flex items-center gap-1"
8383
>
8484
View Leaderboard
85-
<ExternalLink className="text-xs" />
85+
<ExternalLink className="text-xs" size={16} />
8686
</Link>
8787
</div>
8888
</div>

src/routes/admin/github-stats.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function GitHubStatsAdmin() {
105105
return (
106106
<div>
107107
<div className="flex items-center gap-2">
108-
<Star className="text-yellow-500" size={14} />
108+
<Star className="text-yellow-500" size={16} />
109109
<span className="font-semibold text-gray-900 dark:text-white">
110110
{entry.stats.starCount.toLocaleString()}
111111
</span>
@@ -131,7 +131,7 @@ function GitHubStatsAdmin() {
131131
return (
132132
<div>
133133
<div className="flex items-center gap-2">
134-
<Users className="text-blue-500" size={14} />
134+
<Users className="text-blue-500" size={16} />
135135
<span className="font-semibold text-gray-900 dark:text-white">
136136
{entry.stats.contributorCount.toLocaleString()}
137137
</span>
@@ -168,7 +168,7 @@ function GitHubStatsAdmin() {
168168
return (
169169
<div>
170170
<div className="flex items-center gap-2">
171-
<Box className="text-purple-500" />
171+
<Box className="text-purple-500" size={16} />
172172
<span className="font-semibold text-gray-900 dark:text-white">
173173
{entry.stats.dependentCount.toLocaleString()}
174174
</span>

src/routes/admin/npm-stats.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ function NpmStatsAdmin() {
128128
cell: ({ row }) => (
129129
<div>
130130
<div className="flex items-center gap-2">
131-
<Download className="text-emerald-500" />
131+
<Download className="text-emerald-500" size={18} />
132132
<span className="font-semibold text-gray-900 dark:text-white">
133133
{row.original.totalDownloads.toLocaleString()}
134134
</span>

0 commit comments

Comments
 (0)