I'm working on a stylesheet using kotlin-styled an...
# react
c
I'm working on a stylesheet using kotlin-styled and kotlin-css-js and I'm trying to convert an existing style but don't quite know how to do it. The style is for a button's hover state and I want to set the color property to be inherit but I don't see a way to do that
l
Whenever you encounter an unsupported property/value, simply use
put("name", "value")
. However, we should probably add
inherit
as a recognised value for all properties. It’s not something one needs often, but for the sake of completeness it should be there.
👍 1