summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt
index 84972a2a..f4e3a477 100644
--- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt
+++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt
@@ -171,7 +171,7 @@ private fun RElementBuilder<IButtonProps>.priceInfo(amount: Int) {
borderRadius = size
fontSize = size * 0.8
textAlign = TextAlign.center
- zIndex = 5 // above all 3 buttons
+ zIndex = 12 // blueprintjs sets hovered buttons z-index to 11
}
+"$amount"
}
bgstack15