summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt1
1 files changed, 0 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 f4e3a477..e2e89a95 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,6 @@ private fun RElementBuilder<IButtonProps>.priceInfo(amount: Int) {
borderRadius = size
fontSize = size * 0.8
textAlign = TextAlign.center
- zIndex = 12 // blueprintjs sets hovered buttons z-index to 11
}
+"$amount"
}
bgstack15