Commit 0891e675 authored by Brendan Wong's avatar Brendan Wong Committed by GitHub

fix: token bridge pointer bug (#6670)

* fix: token bridge pointer bug

* fix: use zIndex enum instead of hardcoded
parent b319acd9
...@@ -7,6 +7,7 @@ import styled from 'styled-components/macro' ...@@ -7,6 +7,7 @@ import styled from 'styled-components/macro'
import { ExternalLink, HideSmall } from 'theme' import { ExternalLink, HideSmall } from 'theme'
import { colors } from 'theme/colors' import { colors } from 'theme/colors'
import { useDarkModeManager } from 'theme/components/ThemeToggle' import { useDarkModeManager } from 'theme/components/ThemeToggle'
import { Z_INDEX } from 'theme/zIndex'
import { AutoRow } from '../Row' import { AutoRow } from '../Row'
...@@ -122,9 +123,9 @@ const LinkOutToBridge = styled(ExternalLink)` ...@@ -122,9 +123,9 @@ const LinkOutToBridge = styled(ExternalLink)`
font-size: 16px; font-size: 16px;
justify-content: space-between; justify-content: space-between;
padding: 6px 8px; padding: 6px 8px;
margin-right: 12px;
text-decoration: none !important; text-decoration: none !important;
width: 100%; width: 100%;
z-index: ${Z_INDEX.hover};
` `
const StyledArrowUpRight = styled(ArrowUpRight)` const StyledArrowUpRight = styled(ArrowUpRight)`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment