Moved to text shadow instead of text stroke

This commit is contained in:
2025-09-27 21:58:30 +02:00
parent 4647e9df60
commit 0c2ad216f2
5 changed files with 2 additions and 7 deletions

View File

@@ -105,7 +105,7 @@ async function SuspendedPage({ params, searchParams }: Pick<PageProps<"/guild/[v
return (
<div className="flex flex-col items-center pb-5 pt-30">
<div className="flex gap-2 items-center">
<h1 className="text-4xl font-bold sm:text-5xl text-stroke text-stroke-foreground dark:text-stroke-transparent">
<h1 className="text-4xl font-bold sm:text-5xl text-shadow-lg">
<span className={cn(getColor(guild.tagColor, "text", "gray"))}>{guild.name}</span>
</h1>
</div>