Skip to content

Commit

Permalink
πŸ”§ fix: μƒν•œκ°€ ν•˜ν•œκ°€ 색상 μˆ˜μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
dongree committed Nov 21, 2024
1 parent 1309181 commit 58cad28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FE/src/components/Mypage/AccountCondition.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ export default function AccountCondition({ asset }: AccountConditionProps) {
<div className='flex justify-between mb-6'>
<p className='text-juga-grayscale-500'>투자 손읡</p>
<p
className={`${is_positive ? 'text-juga-blue-50' : 'text-juga-red-60'}`}
className={`${is_positive ? 'text-juga-red-60' : 'text-juga-blue-50'}`}
>
{stringToLocaleString(total_profit)}원
</p>
</div>
<div className='flex justify-between'>
<p className='text-juga-grayscale-500'>수읡λ₯ </p>
<p
className={`${is_positive ? 'text-juga-blue-50' : 'text-juga-red-60'}`}
className={`${is_positive ? 'text-juga-red-60' : 'text-juga-blue-50'}`}
>
{total_profit_rate}%
</p>
Expand Down

0 comments on commit 58cad28

Please sign in to comment.