diff --git a/packages/react/components/Drawer.tsx b/packages/react/components/Drawer.tsx index 7a1c05b..efb4719 100644 --- a/packages/react/components/Drawer.tsx +++ b/packages/react/components/Drawer.tsx @@ -110,6 +110,13 @@ const DrawerOverlay = forwardRef( } const Comp = asChild ? Slot : "div"; + const backdropFilter = `brightness(${ + state.isDragging + ? state.movePercentage + DRAWER_OVERLAY_BACKDROP_FILTER_BRIGHTNESS + : state.opened + ? DRAWER_OVERLAY_BACKDROP_FILTER_BRIGHTNESS + : 1 + })`; return createPortal( ( })} onClick={onOutsideClick} style={{ - backdropFilter: `brightness(${ - state.isDragging - ? state.movePercentage + DRAWER_OVERLAY_BACKDROP_FILTER_BRIGHTNESS - : state.opened - ? DRAWER_OVERLAY_BACKDROP_FILTER_BRIGHTNESS - : 1 - })`, + backdropFilter, + WebkitBackdropFilter: backdropFilter, transitionDuration: state.isDragging ? "0s" : undefined, }} ref={ref}