diff --git a/src/js/components/Header/index.js b/src/js/components/Header/index.js index 987c7ded..b64301c5 100644 --- a/src/js/components/Header/index.js +++ b/src/js/components/Header/index.js @@ -24,9 +24,12 @@ const LayoutWrapper = styled.div` height: 100%; max-width: 1170px; margin: 0 auto; - padding: 0 32px; display: flex; align-items: center; + + @media screen and (max-width: 1170px) { + padding: 0 25px; + } `; const A = styled.a` diff --git a/src/js/views/Wallet/index.js b/src/js/views/Wallet/index.js index f2c188cc..1d79de71 100644 --- a/src/js/views/Wallet/index.js +++ b/src/js/views/Wallet/index.js @@ -48,7 +48,7 @@ const WalletWrapper = styled.div` max-width: 1170px; margin: 0 auto; flex: 1; - background: ${colors.MAIN}; + background: ${colors.WHITE}; display: flex; flex-direction: row; border-radius: 4px 4px 0px 0px;