Skip to content
Snippets Groups Projects
Unverified Commit 3eb09b66 authored by Joel Jeremy Marquez's avatar Joel Jeremy Marquez Committed by GitHub
Browse files

Fix blur performance issue in Safari (#1646)

* Fix blur performance issue in Safari

* Release notes
parent cb00826f
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,9 @@ function BlurredOverlay({ blurIntensity, children, ...props }) {
...(!hovered && {
filter: `blur(${blurIntensity})`,
WebkitFilter: `blur(${blurIntensity})`,
// To fix blur performance issue in Safari.
// https://graffino.com/til/CjT2jrcLHP-how-to-fix-filter-blur-performance-issue-in-safari
transform: `translate3d(0, 0, 0)`,
}),
};
......
---
category: Bugfix
authors: [joel-jeremy]
---
Fix blur performance issue in Safari.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment