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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ This is a "bug bounty hackathon" project that ironically has more bugs than it f
### 🎪 Features That Will Blow Your Mind (And Your Bundle Size)

- 🐛 **Virtual Bug Extermination**: Because squashing real bugs requires actual skill
- 🧼 **Bug Basher Arena Fix**: The playfield now stretches to fill the window again so the critters actually show up
- 📊 **Dashboard with Fancy Charts**: D3.js charts now sport gradients, grids, and zoom
- 🏆 **Leaderboard System**: Compete with yourself since you're probably the only user
- 🎨 **Windows 95 UI**: Powered by React95 components so every window, button, and menu looks like it came straight from 1995
Expand Down
2 changes: 1 addition & 1 deletion src/components/BugArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ const BugArea: React.FC<BugAreaProps> = ({ bugs }) => {
<div
ref={containerRef}
onClick={shoot}
className="relative w-full h-full overflow-hidden select-none cursor-none"
className="absolute inset-0 overflow-hidden select-none cursor-none"
>
{/* Aim cross-hair */}
<AimCursor x={aim.x} y={aim.y} />
Expand Down