refactor: font of detail in people in resource list

This commit is contained in:
2025-10-28 21:31:20 +08:00
parent 5038249c1a
commit 2cce67d350

View File

@@ -590,7 +590,7 @@ const ResourceList: React.FC = () => {
return ( return (
<div style={{ padding: '8px 24px' }}> <div style={{ padding: '8px 24px' }}>
{isMobile && ( {isMobile && (
<div style={{ display: 'flex', gap: 16, marginBottom: 12, color: '#cbd5e1' }}> <div style={{ display: 'flex', gap: 16, marginBottom: 12, color: '#434343ff' }}>
{record.height !== undefined && <div>: {record.height}</div>} {record.height !== undefined && <div>: {record.height}</div>}
{record.marital_status && <div>: {record.marital_status}</div>} {record.marital_status && <div>: {record.marital_status}</div>}
</div> </div>
@@ -614,8 +614,8 @@ const ResourceList: React.FC = () => {
wordBreak: 'break-word', wordBreak: 'break-word',
}} }}
> >
<span style={{ color: '#9ca3af' }}>{k}</span> <span style={{ color: '#000000ff', fontWeight: 600 }}>{k}</span>
<span style={{ color: '#e5e7eb' }}>{String(v)}</span> <span style={{ color: '#2d2d2dff' }}>{String(v)}</span>
</div> </div>
))} ))}
</div> </div>