Skip to content

Commit

Permalink
chore(bridge-ui-v2): Update text color in BridgeTabs (#14915)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaodino authored Oct 9, 2023
1 parent 11ac22d commit ebfae22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bridge-ui-v2/src/components/Bridge/BridgeTabs.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
{#if PUBLIC_NFT_BRIDGE_ENABLED === 'true'}
<div class={classes}>
<button
class="{isERC20Bridge ? 'btn-primary' : 'btn-ghost'} h-[40px] px-[28px] rounded-full text-white"
class="{isERC20Bridge ? 'btn-primary text-white' : 'btn-ghost'} h-[40px] px-[28px] rounded-full"
on:click={() => onBridgeClick(BridgeTypes.FUNGIBLE)}>
<span> {$t('nav.token')}</span>
</button>

<button
class="{isNFTBridge ? 'btn-primary' : 'btn-ghost'} h-[40px] px-[28px] rounded-full text-white"
class="{isNFTBridge ? 'btn-primary text-white' : 'btn-ghost'} h-[40px] px-[28px] rounded-full"
on:click={() => onBridgeClick(BridgeTypes.NFT)}>
<span> {$t('nav.nft')}</span>
</button>
Expand Down

1 comment on commit ebfae22

@vercel
Copy link

@vercel vercel bot commented on ebfae22 Oct 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

bridge-ui-v2-internal – ./packages/bridge-ui-v2

bridge-ui-v2-internal-git-main-taikoxyz.vercel.app
bridge-ui-v2-internal-taikoxyz.vercel.app
bridge-ui-v2-internal.vercel.app

Please sign in to comment.