how can I use a sass variable in kotlin react styl...
# javascript
d
how can I use a sass variable in kotlin react styledDiv?
Copy code
styledDiv {
        css {
            height = "\$pt-navbar-height".toInt().px
        }
    ...
m
You can't use SASS with Kotlin Styled. I use CSS Variables (Custom Properties) extensively. I don't use Kotlin Styled though.