feat:更新图标位置调整

This commit is contained in:
hzm
2026-02-27 22:30:49 +08:00
parent c3157439c3
commit 1c2195dd64
3 changed files with 17 additions and 9 deletions

View File

@@ -249,12 +249,15 @@ export default function PcFundTable({
)}
<div className="title-text">
<span
className={`name-text ${isUpdated ? 'updated' : ''}`}
className={`name-text`}
title={isUpdated ? '今日净值已更新' : ''}
>
{info.getValue() ?? '—'}
</span>
{code ? <span className="muted code-text">#{code}</span> : null}
{code ? <span className="muted code-text">
#{code}
{isUpdated && <span className="updated-indicator"></span>}
</span> : null}
</div>
</div>
);