From c127c71c402b3713735ae4077be939a7952b113e Mon Sep 17 00:00:00 2001 From: barbara-chaves Date: Wed, 10 Jul 2024 11:26:52 +0200 Subject: [PATCH] Fix header title width --- client/src/components/ui/home-link.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/src/components/ui/home-link.tsx b/client/src/components/ui/home-link.tsx index dae7ee8..084a94e 100644 --- a/client/src/components/ui/home-link.tsx +++ b/client/src/components/ui/home-link.tsx @@ -13,8 +13,10 @@ const HomeLink = ({ className }: HomeLinkProps) => { const t = useTranslations(); return ( - -

{t("Rangelands Data Platform")}

+ +

+ {t("Rangelands Data Platform")} +

); };