fix: add WebkitBackdropFilter to fi x backdrop not working in safari

This commit is contained in:
p-sw 2024-06-04 11:35:57 +09:00
parent c7be14429b
commit 0c67ee5c62

View File

@ -110,6 +110,13 @@ const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
}
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(
<Comp
@ -120,13 +127,8 @@ const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
})}
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}