summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/HomeStyles.kt8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/HomeStyles.kt b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/HomeStyles.kt
index 34699f5b..3686f35c 100644
--- a/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/HomeStyles.kt
+++ b/sw-ui-kt/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/HomeStyles.kt
@@ -19,10 +19,10 @@ object HomeStyles : StyleSheet("HomeStyles", isStatic = true) {
val fullscreen by css {
position = Position.fixed
- top = LinearDimension("0")
- left = LinearDimension("0")
- bottom = LinearDimension("0")
- right = LinearDimension("0")
+ top = 0.px
+ left = 0.px
+ bottom = 0.px
+ right = 0.px
overflow = Overflow.hidden
}
}
bgstack15