What is the kotlin emotion css syntax for adding m...
# javascript
c
What is the kotlin emotion css syntax for adding multiple filters? e.x. in css:
filter: brightness(70%) invert(7%);
1
a
@turansky ^^
t
array
function must be used for such cases
Copy code
filter: array(
    brightness(70.pct),
    invert(7.pct),
)
1
c
thank you! :D
t
array
,
many
- common adapters. Other safe adapters you can find by type hierarchy checking.
👀 1
asDynamic
and
unsafeCast
aren't required 😉
👍 1