Commit d3a2e14d authored by lynn's avatar lynn Committed by GitHub

fix: stop nft id tag from getting cut off (#5049)

* init

* respond to comments

* fix
parent 619c0a0f
...@@ -74,9 +74,6 @@ export const detailsName = style([ ...@@ -74,9 +74,6 @@ export const detailsName = style([
whiteSpace: 'nowrap', whiteSpace: 'nowrap',
textOverflow: 'ellipsis', textOverflow: 'ellipsis',
}), }),
{
lineHeight: '24px',
},
]) ])
export const eventDetail = style([ export const eventDetail = style([
......
...@@ -259,6 +259,7 @@ const Ranking = ({ rarity, collectionName, rarityVerified }: RankingProps) => { ...@@ -259,6 +259,7 @@ const Ranking = ({ rarity, collectionName, rarityVerified }: RankingProps) => {
const rarityProviderLogo = getRarityProviderLogo(rarity.source) const rarityProviderLogo = getRarityProviderLogo(rarity.source)
return ( return (
<Box>
<MouseoverTooltip <MouseoverTooltip
text={ text={
<Row> <Row>
...@@ -284,6 +285,7 @@ const Ranking = ({ rarity, collectionName, rarityVerified }: RankingProps) => { ...@@ -284,6 +285,7 @@ const Ranking = ({ rarity, collectionName, rarityVerified }: RankingProps) => {
</Box> </Box>
</Box> </Box>
</MouseoverTooltip> </MouseoverTooltip>
</Box>
) )
} }
......
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