LogoText: fix text getting cut-off vertically
This commit is contained in:
parent
301ba68842
commit
95ec398268
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue