diff options
| author | Karan Jayachandra <karan.jayachandra@nxp.com> | 2025-11-11 19:08:58 +0100 |
|---|---|---|
| committer | Karan Jayachandra <karan.jayachandra@nxp.com> | 2025-11-11 19:08:58 +0100 |
| commit | d23c38e6f2a972a49a5463cc866190e341e2685e (patch) | |
| tree | 483301cbefa46c7a9e75d65d8ba634d8381a630a /court.mjs | |
| parent | 0e9e28c2595c1ec46d8601efa6f4d377ee70cb27 (diff) | |
Lot of updates and progress
Diffstat (limited to 'court.mjs')
| -rw-r--r-- | court.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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>`; } } |
