Skip to content

Commit

Permalink
fix: color
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed Feb 26, 2025
1 parent 0f74083 commit 09a0aa4
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions apps/vaults-v3/components/details/RewardsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,9 @@ function VeYFIBoostMessage(props: {currentVault: TYDaemonVault; hasStakingReward
height={32}
unoptimized
/>
<p className={cl('text-base font-bold', 'text-neutral-100')}>{'1UP'}</p>
<p className={cl('text-base font-bold', !isV3Page ? 'text-neutral-100' : 'text-neutral-900')}>
{'1UP'}
</p>
</div>
</Link>
);
Expand All @@ -208,7 +210,9 @@ function VeYFIBoostMessage(props: {currentVault: TYDaemonVault; hasStakingReward
height={32}
unoptimized
/>
<p className={cl('text-base font-bold', 'text-neutral-100')}>{'Cove'}</p>
<p className={cl('text-base font-bold', !isV3Page ? 'text-neutral-100' : 'text-neutral-900')}>
{'Cove'}
</p>
</div>
</Link>
);
Expand All @@ -231,7 +235,9 @@ function VeYFIBoostMessage(props: {currentVault: TYDaemonVault; hasStakingReward
height={32}
unoptimized
/>
<p className={cl('text-base font-bold', 'text-neutral-100')}>{'StakeDAO'}</p>
<p className={cl('text-base font-bold', !isV3Page ? 'text-neutral-100' : 'text-neutral-900')}>
{'StakeDAO'}
</p>
</div>
</Link>
);
Expand Down

0 comments on commit 09a0aa4

Please sign in to comment.