feat: reduce size of chevron dropdown

This commit is contained in:
Matthew Russell
2023-07-14 16:50:46 +01:00
parent cca938bf60
commit 25e998728e
2 changed files with 2 additions and 2 deletions
@@ -174,7 +174,7 @@ export const TradeGrid = ({ market, pinnedAsset }: TradeGridProps) => {
trigger={
<HeaderTitle>
{market?.tradableInstrument.instrument.code}
<VegaIcon name={VegaIconNames.CHEVRON_DOWN} />
<VegaIcon name={VegaIconNames.CHEVRON_DOWN} size={14} />
</HeaderTitle>
}
>
+1 -1
View File
@@ -39,7 +39,7 @@ export const Tabs = ({
if (!isValidElement(child) || child.props.hidden) return null;
const isActive = child.props.id === (value || activeTab);
const triggerClass = classNames(
'relative text-xs p-2 border-l border-r first:border-l-0',
'relative text-xs py-1 px-2 border-l border-r first:border-l-0',
{
'cursor-default border-default bg-vega-clight-700 dark:bg-vega-cdark-700':
isActive,