I’ve been playing around with styles a bit more. I...
# react
c
I’ve been playing around with styles a bit more. I was able to fix the issue I had with it not recognizing
.px
as valid by doing this:
Copy code
val styles = CSSBuilder().apply {
    body {
        margin(all = 0.px)
        padding(all = 0.px)
    }
}