diff --git a/apps/trading/pages/markets/[marketId].page.tsx b/apps/trading/pages/markets/[marketId].page.tsx index 9e6f3f960..d56983fb4 100644 --- a/apps/trading/pages/markets/[marketId].page.tsx +++ b/apps/trading/pages/markets/[marketId].page.tsx @@ -104,7 +104,7 @@ const GridTabs = ({ children, group }: GridTabsProps) => { {Children.map(children, (child) => { if (!isValidElement(child)) return null; const isActive = query[group] === child.props.name; - const buttonClass = classNames('p-8', { + const buttonClass = classNames('py-4 px-12', { 'text-vega-pink': isActive, 'bg-white': isActive, });