File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ export default class Game extends Vue {
233
233
234
234
get canPlay() {
235
235
return (
236
- ! this .ended && (this .sessionPlayer === this .engine .players [this .player ])
236
+ ! this .ended && (! this . $store . state . gaiaViewer . player || this .sessionPlayer === this .engine .players [this .player ])
237
237
);
238
238
}
239
239
@@ -376,10 +376,6 @@ export default class Game extends Vue {
376
376
}
377
377
}
378
378
379
- .final-store-table th > span > span ,
380
- .final-store-table th > div {
381
- display : block ;
382
- }
383
379
.current-player {
384
380
& > svg {
385
381
max-width : 50px ;
Original file line number Diff line number Diff line change @@ -151,4 +151,12 @@ export default class Rules extends Vue {
151
151
footer .rules .btn-secondary {
152
152
display : none !important ;
153
153
}
154
+ .final-store-table th {
155
+ padding : 0 !important ;
156
+ }
157
+ .final-store-table th > span ,
158
+ .final-store-table th > span > span ,
159
+ .final-store-table th > div {
160
+ display : block ;
161
+ }
154
162
</style >
You can’t perform that action at this time.
0 commit comments