Skip to content

Commit

Permalink
size
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardZaydler committed Dec 4, 2024
1 parent a30cc16 commit bb18b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/SnowFall/SnowFall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const SnowfallBackground = ({ topOffset = 0 }: { topOffset?: number }) =>
const snowflakes = Array.from({ length: 100 }, () => ({
x: randomNumberBetween(0, width),
y: randomNumberBetween(-height, height),
size: randomNumberBetween(2, 7),
size: randomNumberBetween(2, 9),
speed: randomNumberBetween(1, 1.5),
horizontalSpeed: randomNumberBetween(-1, 1),
}));
Expand Down

0 comments on commit bb18b43

Please sign in to comment.