aboutsummaryrefslogtreecommitdiff
path: root/player.mjs
diff options
context:
space:
mode:
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>`;
}
}