From 2b618be3ac12a1b1720cdda6bc266b9b272b6e11 Mon Sep 17 00:00:00 2001 From: jahooma Date: Thu, 13 Jan 2022 12:58:25 -0600 Subject: [PATCH] Increase padding on contract page --- web/components/contract-overview.tsx | 2 +- web/pages/[username]/[contractSlug].tsx | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/web/components/contract-overview.tsx b/web/components/contract-overview.tsx index 0574aad9..964f70f0 100644 --- a/web/components/contract-overview.tsx +++ b/web/components/contract-overview.tsx @@ -40,7 +40,7 @@ export const ContractOverview = (props: { return ( - +
diff --git a/web/pages/[username]/[contractSlug].tsx b/web/pages/[username]/[contractSlug].tsx index 30092509..57ceb4f0 100644 --- a/web/pages/[username]/[contractSlug].tsx +++ b/web/pages/[username]/[contractSlug].tsx @@ -119,8 +119,13 @@ function BetsSection(props: { contract: Contract; user: User | null }) { return (
- - <MyBetsSummary contract={contract} bets={userBets} showMKT /> + <Title className="px-2" text="Your trades" /> + <MyBetsSummary + className="px-2" + contract={contract} + bets={userBets} + showMKT + /> <Spacer h={6} /> <ContractBetsTable contract={contract} bets={userBets} /> <Spacer h={12} />