Browse Source

Add missing `background-blend-mode` property (#2128)

pull/2302/head
Emir 2 years ago committed by GitHub
parent
commit
749c213bc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      web/core/src/jsMain/kotlin/org/jetbrains/compose/web/css/properties/background.kt

5
web/core/src/jsMain/kotlin/org/jetbrains/compose/web/css/properties/background.kt

@ -48,3 +48,8 @@ fun StyleScope.background(value: String) {
property("background", value)
}
// https://developer.mozilla.org/en-US/docs/Web/CSS/background-blend-mode
fun StyleScope.backgroundBlendMode(value: String) {
property("background-blend-mode", value)
}

Loading…
Cancel
Save