Skip to content

Commit

Permalink
Merge pull request #71 from Vizzuality/develop
Browse files Browse the repository at this point in the history
Fix header title width
  • Loading branch information
barbara-chaves authored Jul 10, 2024
2 parents f66469b + c127c71 commit cfb3a8e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions client/src/components/ui/home-link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ const HomeLink = ({ className }: HomeLinkProps) => {
const t = useTranslations();
return (
<Link href="/" className="flex gap-4">
<RangelandLogoIcon className="fill-global" />
<h1 className={cn("w-32 text-sm", className)}>{t("Rangelands Data Platform")}</h1>
<RangelandLogoIcon className="shrink-0 fill-global" />
<h1 className={cn("w-36 text-balance text-sm", className)}>
{t("Rangelands Data Platform")}
</h1>
</Link>
);
};
Expand Down

0 comments on commit cfb3a8e

Please sign in to comment.