LogoText: fix text getting cut-off vertically

environments/review-site-banne-c218x1/deployments/4153
Alex Gleason 11 months ago
parent 301ba68842
commit 95ec398268
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -8,7 +8,7 @@ interface ILogoText extends Pick<React.HTMLAttributes<HTMLHeadingElement>, 'dir'
const LogoText: React.FC<ILogoText> = ({ children, dir }) => {
return (
<h1
className='overflow-hidden text-ellipsis bg-gradient-to-br from-accent-500 via-primary-500 to-gradient-end bg-clip-text text-5xl font-extrabold text-transparent sm:leading-none lg:text-6xl xl:text-7xl'
className='-my-5 overflow-hidden text-ellipsis bg-gradient-to-br from-accent-500 via-primary-500 to-gradient-end bg-clip-text text-5xl font-extrabold !leading-normal text-transparent lg:text-6xl xl:text-7xl'
dir={dir}
>
{children}

Loading…
Cancel
Save