0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Bumped up recommendation favicon size

refs https://github.com/TryGhost/Product/issues/3926
This commit is contained in:
Djordje Vlaisavljevic 2023-09-21 12:29:23 +01:00
parent 40eaf95a39
commit 5e84232913

View file

@ -23,8 +23,8 @@ const RecommendationIcon: React.FC<Props> = ({title, favicon, showSubscribes, fe
const hint = showSubscribes ? 'This is a Ghost site that supports one-click subscribe' : '';
return (
<div className="relative h-5 w-5" title={hint}>
<img alt={title} className="h-5 w-5 rounded-sm" src={icon} onError={clearIcon} />
<div className="relative h-6 w-6" title={hint}>
<img alt={title} className="h-6 w-6 rounded-sm" src={icon} onError={clearIcon} />
{showSubscribes && <img alt='Ghost Logo' className='absolute bottom-[-3px] right-[-3px] h-[14px] w-[14px]' src={GhostLogo} />}
</div>
);