aboutsummaryrefslogtreecommitdiff
path: root/court.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'court.mjs')
-rw-r--r--court.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/court.mjs b/court.mjs
index 31f277f..b2cd9de 100644
--- a/court.mjs
+++ b/court.mjs
@@ -13,7 +13,7 @@ export class Court {
console.log(this.name + " is currently " + status);
}
render() {
- let type = this.status ? "" : 'class="outline secondary"';
+ let type = this.status ? `class="button is-success"` : 'class="button is-dark"';
return `<button id=${"court_" + this.id} ${type}>${this.name}</button>`;
}
}