From c1a12e3266281e57f6c6e7d49e9f5f004d09e0d9 Mon Sep 17 00:00:00 2001 From: Olivia Thiderman Date: Sun, 28 Jan 2024 16:28:18 +0100 Subject: [PATCH] Add support for the backdrop-filter style https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter --- styles/constants.go | 1 + 1 file changed, 1 insertion(+) diff --git a/styles/constants.go b/styles/constants.go index 490a278..f9a4dc9 100644 --- a/styles/constants.go +++ b/styles/constants.go @@ -121,6 +121,7 @@ const ( BackgroundAttachment = "background-attachment" BackgroundBlendMode = "background-blend-mode" BackfaceVisibility = "backface-visibility" + BackdropFilter = "backdrop-filter" Perspective = "perspective" TransformOrigin = "transform-origin"