From 8da29d5a772baa66be0a61964a0dc00b17fdeb1f Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Mon, 19 Jun 2023 21:38:48 +0800 Subject: [PATCH] Fix scrolling on integrations page --- packages/web/pages/settings/integrations.tsx | 156 ++++++++++--------- 1 file changed, 81 insertions(+), 75 deletions(-) diff --git a/packages/web/pages/settings/integrations.tsx b/packages/web/pages/settings/integrations.tsx index 747233b3e..cf5dd805b 100644 --- a/packages/web/pages/settings/integrations.tsx +++ b/packages/web/pages/settings/integrations.tsx @@ -217,91 +217,97 @@ export default function Integrations(): JSX.Element { top: '5rem', }} /> -
Integrations
- - Connect with other applications can help enhance and streamline your - experience with Omnivore, below are some useful apps to connect your - Omnivore account to. - - -
Applications
- {integrationsArray.map((item) => { - return ( - - integration Image - +
+ Integrations +
+ + Connect with other applications can help enhance and streamline your + experience with Omnivore, below are some useful apps to connect your + Omnivore account to. + + +
Applications
+ + {integrationsArray.map((item) => { + return ( + -

{item.title}

-

{item.subText}

-
- - + {item.button.icon} + + {item.button.text} + + +
- - ) - })} + ) + })} +
+ )