summaryrefslogtreecommitdiff
path: root/sw-ui-kt
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-03-27 19:47:24 +0100
committerJoffrey Bion <joffrey.bion@booking.com>2020-03-27 19:47:37 +0100
commit91c3cdb7ff8b9e2d1d797fbd942f1c43fc71c4fd (patch)
treeae5796780147eb914bd97308cd0b7c0d054b7932 /sw-ui-kt
parentUpgrade to Kotlin 1.3.71 (diff)
downloadseven-wonders-91c3cdb7ff8b9e2d1d797fbd942f1c43fc71c4fd.tar.gz
seven-wonders-91c3cdb7ff8b9e2d1d797fbd942f1c43fc71c4fd.tar.bz2
seven-wonders-91c3cdb7ff8b9e2d1d797fbd942f1c43fc71c4fd.zip
Add alternative (higher res) background images
Diffstat (limited to 'sw-ui-kt')
-rw-r--r--sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/GameScene.kt2
-rw-r--r--sw-ui-kt/src/main/resources/images/background-papyrus1.jpg (renamed from sw-ui-kt/src/main/resources/images/background-papyrus.jpg)bin100272 -> 100272 bytes
-rw-r--r--sw-ui-kt/src/main/resources/images/background-papyrus2.jpgbin0 -> 885805 bytes
-rw-r--r--sw-ui-kt/src/main/resources/images/background-papyrus3.jpgbin0 -> 480677 bytes
4 files changed, 1 insertions, 1 deletions
diff --git a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/GameScene.kt b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/GameScene.kt
index 15c453a3..571c2169 100644
--- a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/GameScene.kt
+++ b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/GameScene.kt
@@ -48,7 +48,7 @@ private class GameScene(props: GameSceneProps) : RComponent<GameSceneProps, RSta
override fun RBuilder.render() {
styledDiv {
css {
- background = "url('images/background-papyrus.jpg')"
+ background = "url('images/background-papyrus3.jpg')"
backgroundSize = "cover"
fullScreen()
}
diff --git a/sw-ui-kt/src/main/resources/images/background-papyrus.jpg b/sw-ui-kt/src/main/resources/images/background-papyrus1.jpg
index 57bdffcf..57bdffcf 100644
--- a/sw-ui-kt/src/main/resources/images/background-papyrus.jpg
+++ b/sw-ui-kt/src/main/resources/images/background-papyrus1.jpg
Binary files differ
diff --git a/sw-ui-kt/src/main/resources/images/background-papyrus2.jpg b/sw-ui-kt/src/main/resources/images/background-papyrus2.jpg
new file mode 100644
index 00000000..b6c8dc5f
--- /dev/null
+++ b/sw-ui-kt/src/main/resources/images/background-papyrus2.jpg
Binary files differ
diff --git a/sw-ui-kt/src/main/resources/images/background-papyrus3.jpg b/sw-ui-kt/src/main/resources/images/background-papyrus3.jpg
new file mode 100644
index 00000000..90350045
--- /dev/null
+++ b/sw-ui-kt/src/main/resources/images/background-papyrus3.jpg
Binary files differ
bgstack15