Skip to content

Commit

Permalink
fixup! feat: add manual webkit support for safari
Browse files Browse the repository at this point in the history
  • Loading branch information
RasenGUY committed Nov 9, 2023
1 parent c1832df commit 65f49dd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/common/FloatingOrbs/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import tw, {styled} from 'twin.macro';

export const FloatingOrbContainer = styled.div`
${tw`sm:mt-[-5rem] absolute top-0 right-0 w-full h-full z-[-51] flex justify-center items-center`}
overflow: clip;
`
export const FloatingOrbBlurContainer = styled.div`
content: '';
Expand All @@ -27,5 +28,6 @@ export const FloatingOrbBlurContainerWithoutBackdrop = styled.div`

export const Orb = styled.div`
${tw`pointer-events-none absolute w-[350px] h-[350px] rounded-[100%] blur-[75px]`}
filter: blur(75px);
-webkit-filter: blur(75px);
`

0 comments on commit 65f49dd

Please sign in to comment.