Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export function Navbar({ children }: { children: React.ReactNode }) {
) : null}
{canAdmin ? (
<div className="flex items-center gap-2 px-2 py-1 rounded-lg">
<Lock />
<Lock size={16} />
<Link
to="/admin"
className="flex-1 text-sm font-medium text-gray-700 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white"
Expand Down
2 changes: 1 addition & 1 deletion src/components/UserFeedbackSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function UserFeedbackSection({ userId }: UserFeedbackSectionProps) {
className="text-sm text-blue-600 dark:text-blue-400 hover:text-blue-700 dark:hover:text-blue-300 flex items-center gap-1"
>
View Leaderboard
<ExternalLink className="text-xs" />
<ExternalLink className="text-xs" size={16} />
</Link>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/routes/admin/github-stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function GitHubStatsAdmin() {
return (
<div>
<div className="flex items-center gap-2">
<Star className="text-yellow-500" size={14} />
<Star className="text-yellow-500" size={16} />
<span className="font-semibold text-gray-900 dark:text-white">
{entry.stats.starCount.toLocaleString()}
</span>
Expand All @@ -131,7 +131,7 @@ function GitHubStatsAdmin() {
return (
<div>
<div className="flex items-center gap-2">
<Users className="text-blue-500" size={14} />
<Users className="text-blue-500" size={16} />
<span className="font-semibold text-gray-900 dark:text-white">
{entry.stats.contributorCount.toLocaleString()}
</span>
Expand Down Expand Up @@ -168,7 +168,7 @@ function GitHubStatsAdmin() {
return (
<div>
<div className="flex items-center gap-2">
<Box className="text-purple-500" />
<Box className="text-purple-500" size={16} />
<span className="font-semibold text-gray-900 dark:text-white">
{entry.stats.dependentCount.toLocaleString()}
</span>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/admin/npm-stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function NpmStatsAdmin() {
cell: ({ row }) => (
<div>
<div className="flex items-center gap-2">
<Download className="text-emerald-500" />
<Download className="text-emerald-500" size={18} />
<span className="font-semibold text-gray-900 dark:text-white">
{row.original.totalDownloads.toLocaleString()}
</span>
Expand Down
Loading