Skip to content

Commit

Permalink
fix: misc
Browse files Browse the repository at this point in the history
  • Loading branch information
cjkoepke committed Dec 2, 2024
1 parent 2469752 commit fd13fc1
Show file tree
Hide file tree
Showing 5 changed files with 1,040 additions and 1,075 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ result*
*.sk
*.vk
treefmt.toml
.DS_Store
Binary file added bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/GlobalTotals/GlobalTotals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const GlobalTotals: FC<Pick<StatsCardProps, "size" | "titleAlign">> = ({
{ label: "Games (all-time):", value: formatNumber(total_games) },
{ label: "Games (active):", value: formatNumber(active_games) },
{ label: "Players (all-time):", value: formatNumber(total_players) },
{ label: "Player (active):", value: formatNumber(active_players) },
{ label: "Players (active):", value: formatNumber(active_players) },
{ label: "Bots:", value: formatNumber(total_bots) },
{ label: "Kills:", value: formatNumber(total_kills) },
]}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Modal/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const Modal: FC<ModalProps> = ({ isOpen, close, children }) => {
alt="Noise"
className="absolute inset-0 w-full h-full object-cover z-10 opacity-20"
/>
<div className="relative z-20 text-shadow-custom">
<div className="relative z-20 text-shadow-custom max-h-screen overflow-y-auto">
{children}
</div>
</div>
Expand Down
Loading

0 comments on commit fd13fc1

Please sign in to comment.