use tabular-nums for percentages in ModelCancelDownload (#2553)

with this patch numbers in percentages have the same width so all the component widths stay the same

https://tailwindcss.com/docs/font-variant-numeric#tabular-figures
This commit is contained in:
Masataka Yakura 2024-04-02 19:54:05 +09:00 committed by GitHub
parent 30f34a41b7
commit 2a6f7745c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,7 +65,9 @@ const ModalCancelDownload: React.FC<Props> = ({ model, isFromList }) => {
}) as number
}
/>
<span>{formatDownloadPercentage(downloadState.percent)}</span>
<span className="tabular-nums">
{formatDownloadPercentage(downloadState.percent)}
</span>
</div>
</Button>
)}