diff options
Diffstat (limited to 'player.mjs')
| -rw-r--r-- | player.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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>`; } } |
