Skip to content

Commit

Permalink
Size changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Brelee2222 committed Jun 26, 2024
1 parent d04eee2 commit 250a5d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/dash/circlePacker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ export class MemberCircle extends Circle {
nameBubble.className = 'bubblename'
nameBubble.style.backgroundColor = BUBBLE_COLORS[Math.floor(Math.random() * BUBBLE_COLORS.length)];
// name.style.fontSize = `${Math.min(30*multiplier, 20)}px`;
nameBubble.style.fontSize = '10px';
nameBubble.style.fontSize = '25px';
}

updateSize() {
this.r = Math.sqrt((Date.
now() - this.loginTime) / 36000 + .2) * 10;
now() - this.loginTime) / 360000 + .2) * 20;
}
}

Expand Down

0 comments on commit 250a5d7

Please sign in to comment.