Skip to content

Commit

Permalink
fix: token\chain tab color
Browse files Browse the repository at this point in the history
  • Loading branch information
AMIRKHANEF committed Feb 1, 2025
1 parent 3d49e12 commit 7e5393d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ function ChainTokensTab ({ isActive = false, setTab }: TabProps) {
return (
<Container disableGutters onClick={handleToggle} sx={{ alignItems: 'center', columnGap: '3px', cursor: 'pointer', display: 'flex', justifyContent: 'center', width: '82px' }}>
<CustomCommand
color={showChains ? '#67439480' : '#FF4FB9'}
secondaryColor={showChains ? '#FF4FB9' : '#67439480'}
color={showChains ? '#AA83DC' : '#67439480'}
secondaryColor={showChains ? '#67439480' : '#FF4FB9'}
size='12'
style={{
transition: 'all 250ms ease-out'
}}
/>
<Typography color={showChains ? '#EAEBF1' : '#AA83DC'} sx={{ color: showChains ? '#EAEBF1' : '#AA83DC', opacity: textOpacity, textTransform: 'capitalize', transition: 'opacity 0.3s ease-in-out, color 0.3s ease-in-out' }} variant='B-2'>
<Typography color='#EAEBF1' sx={{ opacity: textOpacity, textTransform: 'capitalize', transition: 'opacity 0.3s ease-in-out, color 0.3s ease-in-out' }} variant='B-2'>
{displayedText}
</Typography>
<UnfoldMoreIcon sx={{ color: showChains ? '#AA83DC' : '#EAEBF1', fontSize: '15px' }} />
Expand Down

0 comments on commit 7e5393d

Please sign in to comment.