diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-21 13:07:25 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-21 13:46:58 +0200 |
commit | ccb2463755a98cb5231e9241b0e83720926aad23 (patch) | |
tree | ec1359bc7fefade55faf80dc21dca2561655a505 /sw-ui/src | |
parent | Connect to correct port based on dev/prod build (diff) | |
download | seven-wonders-ccb2463755a98cb5231e9241b0e83720926aad23.tar.gz seven-wonders-ccb2463755a98cb5231e9241b0e83720926aad23.tar.bz2 seven-wonders-ccb2463755a98cb5231e9241b0e83720926aad23.zip |
Fix game background image path
Diffstat (limited to 'sw-ui/src')
-rw-r--r-- | sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/GameScene.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/GameScene.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/GameScene.kt index 5d5cbcaa..89b28934 100644 --- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/GameScene.kt +++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/GameScene.kt @@ -52,7 +52,7 @@ private class GameScene(props: GameSceneProps) : RComponent<GameSceneProps, RSta override fun RBuilder.render() { styledDiv { css { - background = "url('images/background/papyrus.jpg')" + background = "url('images/backgrounds/papyrus.jpg')" backgroundSize = "cover" +GlobalStyles.fullscreen } |