We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ace56c commit e9b8d22Copy full SHA for e9b8d22
1 file changed
ui/pages/perps/market-list/components/market-row/market-row.tsx
@@ -117,9 +117,11 @@ export const MarketRow: React.FC<MarketRowProps> = ({
117
gap={2}
118
>
119
<Text fontWeight={FontWeight.Medium}>{displaySymbol}</Text>
120
- <Text variant={TextVariant.BodySm} color={TextColor.TextAlternative}>
121
- {market.maxLeverage}
122
- </Text>
+ <span className="shrink-0 rounded-md bg-background-muted px-1.5">
+ <Text variant={TextVariant.BodyXs} color={TextColor.TextAlternative}>
+ {market.maxLeverage}
123
+ </Text>
124
+ </span>
125
</Box>
126
<Text variant={TextVariant.BodySm} color={TextColor.TextAlternative}>
127
{metricValue}
0 commit comments