aboutsummaryrefslogtreecommitdiff
path: root/court.mjs
diff options
context:
space:
mode:
authorKaran Jayachandra <karan.jayachandra@nxp.com>2025-11-11 19:08:58 +0100
committerKaran Jayachandra <karan.jayachandra@nxp.com>2025-11-11 19:08:58 +0100
commitd23c38e6f2a972a49a5463cc866190e341e2685e (patch)
tree483301cbefa46c7a9e75d65d8ba634d8381a630a /court.mjs
parent0e9e28c2595c1ec46d8601efa6f4d377ee70cb27 (diff)
Lot of updates and progress
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 b2cd9de..8721bc5 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="button is-success"` : 'class="button is-dark"';
+ let type = this.status ? `class="button is-large is-success"` : 'class="button is-large is-dark"';
return `<button id=${"court_" + this.id} ${type}>${this.name}</button>`;
}
}