Skip to content

Commit cfb3a8e

Browse files
Merge pull request #71 from Vizzuality/develop
Fix header title width
2 parents f66469b + c127c71 commit cfb3a8e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

client/src/components/ui/home-link.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ const HomeLink = ({ className }: HomeLinkProps) => {
1313
const t = useTranslations();
1414
return (
1515
<Link href="/" className="flex gap-4">
16-
<RangelandLogoIcon className="fill-global" />
17-
<h1 className={cn("w-32 text-sm", className)}>{t("Rangelands Data Platform")}</h1>
16+
<RangelandLogoIcon className="shrink-0 fill-global" />
17+
<h1 className={cn("w-36 text-balance text-sm", className)}>
18+
{t("Rangelands Data Platform")}
19+
</h1>
1820
</Link>
1921
);
2022
};

0 commit comments

Comments
 (0)