Skip to content

Commit a51a739

Browse files
kunishclaude
andcommitted
fix: remove gradient text effect that hides proxy group titles (#1857)
The bg-clip-text + text-transparent technique conflicts with line-clamp-1 in some browsers, causing titles to become invisible. Replace with simple text-base-content since the original gradient (base-content to base-content/70) had negligible visual difference. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent dcd8163 commit a51a739

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pages/proxies.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const ProxyGroupTitle = defineComponent({
178178
'span',
179179
{
180180
class:
181-
'text-lg font-semibold tracking-tight line-clamp-1 break-all bg-gradient-to-br from-base-content to-base-content/70 bg-clip-text text-transparent',
181+
'text-lg font-semibold tracking-tight line-clamp-1 break-all text-base-content',
182182
},
183183
props.proxyGroup.name,
184184
),
@@ -345,7 +345,7 @@ const ProxyProviderTitle = defineComponent({
345345
'span',
346346
{
347347
class:
348-
'text-lg font-semibold tracking-tight line-clamp-1 break-all bg-gradient-to-br from-base-content to-base-content/70 bg-clip-text text-transparent',
348+
'text-lg font-semibold tracking-tight line-clamp-1 break-all text-base-content',
349349
},
350350
props.provider.name,
351351
),

0 commit comments

Comments
 (0)