Fix web integration tests

This commit is contained in:
Shagen Ogandzhanian
2021-07-23 13:47:12 +02:00
parent 4f3703693d
commit f3d4a2cbfa
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ package com.sample.style
import org.jetbrains.compose.web.css.*
import org.jetbrains.compose.web.css.selectors.CSSSelector
object AppCSSVariables : CSSVariables {
object AppCSSVariables {
val wtColorGreyLight by variable<CSSColorValue>()
val wtColorGreyDark by variable<CSSColorValue>()

View File

@@ -38,7 +38,7 @@ class State {
val globalState = State()
val globalInt = mutableStateOf(1)
object MyCSSVariables : CSSVariables {
object MyCSSVariables {
val myVar by variable<CSSColorValue>()
val myVar2 by variable<StylePropertyString>()
}