summaryrefslogtreecommitdiff
path: root/sw-ui/src/main/kotlin
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-05-21 11:31:27 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-05-21 11:31:36 +0200
commit81d459399c11a906a111174eaa0b3159d1cf95d4 (patch)
tree6ed9f3bab565eea0cedb7d0c6e411837550c0b5a /sw-ui/src/main/kotlin
parentAdd github actions build (diff)
downloadseven-wonders-81d459399c11a906a111174eaa0b3159d1cf95d4.tar.gz
seven-wonders-81d459399c11a906a111174eaa0b3159d1cf95d4.tar.bz2
seven-wonders-81d459399c11a906a111174eaa0b3159d1cf95d4.zip
Fix background->backgrounds path
Diffstat (limited to 'sw-ui/src/main/kotlin')
-rw-r--r--sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/HomeStyles.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/HomeStyles.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/HomeStyles.kt
index 0fae650e..e55b9b47 100644
--- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/HomeStyles.kt
+++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/HomeStyles.kt
@@ -6,7 +6,7 @@ import styled.StyleSheet
object HomeStyles : StyleSheet("HomeStyles", isStatic = true) {
val zeusBackground by css {
- background = "url('images/background/zeus-temple.jpg') center no-repeat"
+ background = "url('images/backgrounds/zeus-temple.jpg') center no-repeat"
backgroundSize = "cover"
}
bgstack15