summaryrefslogtreecommitdiff
path: root/sw-ui/src
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-05-23 02:16:02 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-05-23 02:16:02 +0200
commit6c85cc38c27735dd317b464f61942733216e61d0 (patch)
tree9656fac0cd730202ed632b1711ddb5551764a991 /sw-ui/src
parentAdd "leave game" feature for end of game (diff)
downloadseven-wonders-6c85cc38c27735dd317b464f61942733216e61d0.tar.gz
seven-wonders-6c85cc38c27735dd317b464f61942733216e61d0.tar.bz2
seven-wonders-6c85cc38c27735dd317b464f61942733216e61d0.zip
Fix score board background
Diffstat (limited to 'sw-ui/src')
-rw-r--r--sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ScoreTable.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ScoreTable.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ScoreTable.kt
index 149fd3c9..1f2709e7 100644
--- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ScoreTable.kt
+++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ScoreTable.kt
@@ -25,6 +25,7 @@ fun RBuilder.scoreTableOverlay(scoreBoard: ScoreBoard, players: List<PlayerDTO>,
display = Display.flex
flexDirection = FlexDirection.column
alignItems = Align.center
+ +GameStyles.scoreBoard // loads the styles so that they can be picked up by bpCard
}
styledH1 {
css {
bgstack15