diff --git a/examples/web-landing/src/jsMain/kotlin/com/sample/style/Stylesheet.kt b/examples/web-landing/src/jsMain/kotlin/com/sample/style/Stylesheet.kt index 0ec4c33922..607368f889 100644 --- a/examples/web-landing/src/jsMain/kotlin/com/sample/style/Stylesheet.kt +++ b/examples/web-landing/src/jsMain/kotlin/com/sample/style/Stylesheet.kt @@ -36,7 +36,7 @@ object AppStylesheet : StyleSheet() { lineHeight(24.px) position(Position.Relative) - top((-32).px) + top(-32.px) marginLeft(8.px) fontSize(15.px) backgroundColor(rgba(39, 40, 44, .05)) @@ -45,7 +45,7 @@ object AppStylesheet : StyleSheet() { media(mediaMaxWidth(640.px)) { self style { - top((-16).px) + top(-16.px) } } } diff --git a/examples/web-landing/src/jsMain/kotlin/com/sample/style/WtText.kt b/examples/web-landing/src/jsMain/kotlin/com/sample/style/WtText.kt index 1817492897..9a1c63dff9 100644 --- a/examples/web-landing/src/jsMain/kotlin/com/sample/style/WtText.kt +++ b/examples/web-landing/src/jsMain/kotlin/com/sample/style/WtText.kt @@ -8,7 +8,7 @@ object WtTexts : StyleSheet(AppStylesheet) { color(Color("#27282c")) fontSize(60.px) fontSize(AppCSSVariables.wtHeroFontSize.value(60.px)) - letterSpacing((-1.5).px) + letterSpacing(-1.5.px) fontWeight(900) lineHeight(64.px) lineHeight(AppCSSVariables.wtHeroLineHeight.value(64.px)) @@ -121,7 +121,7 @@ object WtTexts : StyleSheet(AppStylesheet) { color(Color("#27282c")) fontSize(31.px) fontSize(AppCSSVariables.wtH2FontSize.value(31.px)) - letterSpacing((-.5).px) + letterSpacing(-.5.px) fontWeight(700) lineHeight(40.px) lineHeight(40.px)