updated at

This commit is contained in:
ntr
2019-04-27 14:32:05 +10:00
parent c32b4b7180
commit 483c6c5b9c
6 changed files with 7 additions and 5 deletions
+1
View File
@@ -374,6 +374,7 @@ header {
.ready {
color: forestgreen;
border-color: forestgreen;
box-shadow: inset -0.5em 0 0 0 forestgreen;
}
+2 -1
View File
@@ -60,9 +60,10 @@ function InstanceComponent(args) {
</button>
);
const rdyClasses = `instance-btn instance-ui-btn ready-btn ${player.ready ? 'ready' : ''}`;
const readyBtn = (
<button
className="instance-btn instance-ui-btn ready-btn"
className={rdyClasses}
onClick={() => sendInstanceReady()}>
Ready
</button>