rescript-react icon indicating copy to clipboard operation
rescript-react copied to clipboard

Add support for `backdrop-filter` css property

Open EthanBonsignori opened this issue 3 years ago • 0 comments

Add support for backdrop-filter to ReactDOM.Style. Currently can only be used with unsafeAddProp(..) like so

ReactDOM.Style.make()->ReactDOM.Style.unsafeAddProp(
      "backdrop-filter",
      "blur(5px)",
    ),

MDN docs: https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter Specification: https://drafts.fxtf.org/filter-effects-2/#BackdropFilterProperty

EthanBonsignori avatar Apr 26 '22 16:04 EthanBonsignori