From dd42b641acb34829e67a7154a79b27ee61dabf80 Mon Sep 17 00:00:00 2001
From: James Grugett <jahooma@gmail.com>
Date: Thu, 25 Aug 2022 12:59:26 -0500
Subject: [PATCH] Move recommended markets below market white bg onto gray bg

---
 web/pages/[username]/[contractSlug].tsx | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/web/pages/[username]/[contractSlug].tsx b/web/pages/[username]/[contractSlug].tsx
index 282df488..8250bde9 100644
--- a/web/pages/[username]/[contractSlug].tsx
+++ b/web/pages/[username]/[contractSlug].tsx
@@ -267,14 +267,14 @@ export function ContractPageContent(
           tips={tips}
           comments={comments}
         />
-
-        {recommendedContracts?.length > 0 && (
-          <Col className="mx-2 gap-2 sm:mx-0">
-            <Subtitle text="Recommended" />
-            <ContractsGrid contracts={recommendedContracts} />
-          </Col>
-        )}
       </Col>
+
+      {recommendedContracts.length > 0 && (
+        <Col className="gap-2 px-2 sm:px-0">
+          <Subtitle text="Recommended" />
+          <ContractsGrid contracts={recommendedContracts} />
+        </Col>
+      )}
     </Page>
   )
 }