diff --git a/web/pages/markets.tsx b/web/pages/markets.tsx index e40a9b39..64531b79 100644 --- a/web/pages/markets.tsx +++ b/web/pages/markets.tsx @@ -70,7 +70,7 @@ const HotMarkets = (props: { contracts: Contract[] }) => { return (
- + <Title className="!mt-0" text="🔥 Markets" /> <ContractsGrid contracts={contracts} showHotVolume /> </div> ) @@ -82,7 +82,7 @@ const ClosingSoonMarkets = (props: { contracts: Contract[] }) => { return ( <div className="w-full bg-green-50 border-2 border-green-100 p-6 rounded-lg shadow-md"> - <Title className="mt-0" text="⏰ Closing soon" /> + <Title className="!mt-0" text="⏰ Closing soon" /> <ContractsGrid contracts={contracts} showCloseTime /> </div> )