We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f66469b + c127c71 commit cfb3a8eCopy full SHA for cfb3a8e
client/src/components/ui/home-link.tsx
@@ -13,8 +13,10 @@ const HomeLink = ({ className }: HomeLinkProps) => {
13
const t = useTranslations();
14
return (
15
<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>
+ <RangelandLogoIcon className="shrink-0 fill-global" />
+ <h1 className={cn("w-36 text-balance text-sm", className)}>
18
+ {t("Rangelands Data Platform")}
19
+ </h1>
20
</Link>
21
);
22
};
0 commit comments