From 8ad63117e108d7154d2535d1ab734a98135f4a9d Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Thu, 23 Aug 2018 17:39:00 +0200 Subject: [PATCH] Adjusted size of header to designs --- src/js/components/Header/index.js | 5 ++++- src/js/views/Wallet/index.js | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) 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;