diff --git a/app/components/shared/General.js b/app/components/shared/General.js
index e057d79e9efbfa4d336a4d289ccae064f4080cc6..737024c03d16cf24346772587cacf0be45707937 100644
--- a/app/components/shared/General.js
+++ b/app/components/shared/General.js
@@ -19,9 +19,10 @@ export const SectionContent = styled(Section)`
   padding: 0;
   box-shadow: ${th('boxShadow')};
   background-color: ${th('colorBackground')};
-  &:not(:first-of-type) {
-    margin-top: ${grid(3)};
-  }
+  margin-top: ${({ noGap }) => (noGap ? 0 : grid(2))};
+  // &:not(:first-of-type) {
+    // margin-top: ${grid(3)};
+  // }
   border-radius: ${({ noGap }) =>
     noGap
       ? css`0 ${th('borderRadius')} ${th('borderRadius')}`