summaryrefslogtreecommitdiff
path: root/sw-ui/src
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-05-27 11:43:56 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-05-27 11:43:56 +0200
commit87f552607bfc127c3689459d2b60048cb1ae3989 (patch)
tree0b2cb6bcef74e28cc2efff4eea67fc73b7501f75 /sw-ui/src
parentFix coin icon z-index (diff)
downloadseven-wonders-87f552607bfc127c3689459d2b60048cb1ae3989.tar.gz
seven-wonders-87f552607bfc127c3689459d2b60048cb1ae3989.tar.bz2
seven-wonders-87f552607bfc127c3689459d2b60048cb1ae3989.zip
Remove useless z-index
Diffstat (limited to 'sw-ui/src')
-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