From f70ac563f1a173b177c17c44ce260a8d3437cf21 Mon Sep 17 00:00:00 2001 From: Michael Rieger Date: Thu, 12 Mar 2026 15:24:54 +0100 Subject: [PATCH] fix: text gradient issues in chromium --- src/components/GlobalStyles.astro | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/GlobalStyles.astro b/src/components/GlobalStyles.astro index e9f004b..f79dcf4 100644 --- a/src/components/GlobalStyles.astro +++ b/src/components/GlobalStyles.astro @@ -45,7 +45,7 @@ --padding-x: 3rem; } - @media screen and (min-width:64rem) { + @media screen and (min-width: 64rem) { --padding-x: 5rem; } } @@ -73,6 +73,12 @@ background: var(--gradient-heading); background-clip: text; color: transparent; + + * { + background: var(--gradient-heading); + background-clip: text; + color: transparent; + } } p {