Skip to content

Commit 8c09c18

Browse files
authored
Merge pull request #991 from kanishka-commits/ui/txt-clr
[FIX]: #976 Podcast Page Stats Title Not Visible in Light Mode
2 parents 3907e01 + 13b68bc commit 8c09c18

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/pages/podcasts/index.css

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,16 @@ html[data-theme="light"] {
291291

292292
.stat-label {
293293
font-size: 14px;
294-
color: var(--podcast-text-dim);
294+
background: linear-gradient(
295+
135deg,
296+
var(--podcast-text-primary) 0%,
297+
var(--podcast-text-secondary) 30%,
298+
var(--podcast-text-muted) 60%,
299+
var(--podcast-text-dim) 100%
300+
);
301+
-webkit-background-clip: text;
302+
-webkit-text-fill-color: transparent;
303+
background-clip: text;
295304
font-weight: 600;
296305
text-transform: uppercase;
297306
letter-spacing: 0.5px;

0 commit comments

Comments
 (0)