We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 697ba6e commit 43b5afdCopy full SHA for 43b5afd
components/layout/index.tsx
@@ -35,6 +35,10 @@ export default function Layout({
35
target="_blank"
36
rel="noopener noreferrer"
37
className="relative overflow-hidden rounded-full w-32 px-10 py-4 focus:outline-none focus:ring-0"
38
+ // This is a workaround hack to make overflow-hidden work on Safari: https://github.com/tailwindlabs/tailwindcss/discussions/5675
39
+ style={{
40
+ WebkitMaskImage: "-webkit-radial-gradient(white, black);",
41
+ }}
42
>
43
<span className="absolute inset-px z-10 grid place-items-center rounded-full bg-black bg-gradient-to-t from-neutral-800 text-neutral-400 text-sm">
44
View the code
0 commit comments