From ca3e550fb59af89a2ddc0e1e0e59a3025edbece7 Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Tue, 11 Nov 2025 22:59:59 +0100 Subject: Fixed timer notifications and the title --- player.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player.mjs') diff --git a/player.mjs b/player.mjs index ef10e03..da94e42 100644 --- a/player.mjs +++ b/player.mjs @@ -15,7 +15,7 @@ export class Player { console.log(this.name + " has a level of " + this.level + " and is currently " + status); } render() { - let type = this.status ? `class="button is-large is-success"` : 'class="button is-large is-danger"'; + let type = this.status ? `class="button is-medium is-success"` : 'class="button is-medium is-danger"'; return ``; } } -- cgit v1.3.1