fix: indicator alignment

This commit is contained in:
asiaznik 2024-02-23 18:06:11 +01:00
parent 4d64bded3f
commit 0bc46404e9
No known key found for this signature in database
GPG Key ID: 4D5C8972A02C52C2

View File

@ -312,7 +312,7 @@ const ProposalDetails = ({
{proposal.subProposals.map((p, i) => {
if (!p?.terms) return null;
return (
<li key={i} className="flex gap-3">
<li key={i} className="flex gap-3 items-center">
<span className={getIndicatorStyle(i + 1)}>{i + 1}</span>
<span>
<div>{renderDetails(p.terms)}</div>