chuni: fix trophy line height

This commit is contained in:
sk1982 2024-03-15 19:02:41 -04:00
parent cd59c24e4c
commit 83815a8c74

View File

@ -24,7 +24,7 @@ export type ChuniTrophyProps = {
export const ChuniTrophy = ({ name, rarity, className }: ChuniTrophyProps) => { export const ChuniTrophy = ({ name, rarity, className }: ChuniTrophyProps) => {
return (<div className={`w-full overflow-hidden relative aspect-[593/62] @container-size ${className}`}> return (<div className={`w-full overflow-hidden relative aspect-[593/62] @container-size ${className}`}>
<div className="z-10 absolute w-full h-full flex items-center justify-center top-0" lang="ja"> <div className="z-10 absolute w-full h-full flex items-center justify-center top-0" lang="ja">
<div className="w-11/12 text-black font-semibold text-center text-nowrap overflow-hidden text-[50cqh]" title={name ?? 'Trophy'}> <div className="w-11/12 pb-[2.5cqh] leading-loose text-black font-semibold text-center text-nowrap overflow-hidden text-[50cqh]" title={name ?? 'Trophy'}>
{name} {name}
</div> </div>
</div> </div>