aboutsummaryrefslogtreecommitdiff
path: root/player.mjs
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2025-11-11 22:59:59 +0100
committerKaran Jayachandra <mail@karanjayachandra.com>2025-11-11 22:59:59 +0100
commitca3e550fb59af89a2ddc0e1e0e59a3025edbece7 (patch)
tree05ac13709df0c8b6600d375657a4e9f3ce8cf0a4 /player.mjs
parentd23c38e6f2a972a49a5463cc866190e341e2685e (diff)
Fixed timer notifications and the title
Diffstat (limited to 'player.mjs')
-rw-r--r--player.mjs2
1 files changed, 1 insertions, 1 deletions
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 `<button id=${"regular_" + this.id} ${type}>${this.name}</button>`;
}
}