From 88125457f8d69ce780517faf461466552adc1bb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Longoni?= Date: Tue, 22 Feb 2022 17:22:00 -0300 Subject: [PATCH 1/3] change layout flexbox --- src/custom/pages/App/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/custom/pages/App/index.tsx b/src/custom/pages/App/index.tsx index f20f9aacd..e00701e13 100644 --- a/src/custom/pages/App/index.tsx +++ b/src/custom/pages/App/index.tsx @@ -45,9 +45,9 @@ export const BodyWrapper = styled.div` display: flex; flex-direction: column; width: 100%; - padding-top: 120px; align-items: center; - flex: 1; + justify-content: center; + flex: auto; overflow-y: auto; overflow-x: hidden; z-index: 1; From ea9717c67b333b20c50229fd1eae0fbda7868795 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Longoni?= Date: Wed, 23 Feb 2022 17:55:27 -0300 Subject: [PATCH 2/3] add more padding-top --- src/custom/pages/App/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/custom/pages/App/index.tsx b/src/custom/pages/App/index.tsx index e00701e13..5ddb4449d 100644 --- a/src/custom/pages/App/index.tsx +++ b/src/custom/pages/App/index.tsx @@ -43,8 +43,9 @@ export const Wrapper = styled(AppMod)`` export const BodyWrapper = styled.div` display: flex; - flex-direction: column; + flex-direction: row; width: 100%; + padding-top: 10vh; align-items: center; justify-content: center; flex: auto; From df0656ac898b49ce7dbbdfd9c1422b6c1acf1f29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Longoni?= Date: Thu, 24 Feb 2022 10:37:46 -0300 Subject: [PATCH 3/3] fix #1550 margin on footer --- src/custom/components/Footer/index.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/custom/components/Footer/index.tsx b/src/custom/components/Footer/index.tsx index e086fcfca..ed6cc4d7c 100644 --- a/src/custom/components/Footer/index.tsx +++ b/src/custom/components/Footer/index.tsx @@ -18,12 +18,8 @@ const Wrapper = styled.div` ${({ theme }) => theme.flexRowNoWrap} align-items: center; justify-content: space-evenly; - margin: auto 96px 0 32px; + margin: auto 16px; width: 100%; - - ${({ theme }) => theme.mediaWidth.upToMedium` - margin: 0 auto 65px; - `} ` const FooterWrapper = styled.div`