Skip to content

Commit

Permalink
Increase bubble size
Browse files Browse the repository at this point in the history
  • Loading branch information
weiland committed Aug 13, 2023
1 parent ca8f4d5 commit 0d2a8a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bubbles.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Math.floor(Math.random() * (n - m + 1)) + m;
const sizes = (amount: number): number[] =>
new Array(amount || 0).fill(4).map(() => rnd(4, 8));
new Array(amount || 0).fill(4).map(() => rnd(8, 18));
const createStyle = (size: number): string => `
top: ${rnd(20, 80)}%;
Expand Down

0 comments on commit 0d2a8a7

Please sign in to comment.