From bec12cbaf87b37d7b7e50177765ebb001745faa7 Mon Sep 17 00:00:00 2001 From: slowbackspace Date: Tue, 12 Mar 2019 17:37:36 +0100 Subject: [PATCH] fix wallet border-radius --- src/views/Wallet/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/Wallet/index.js b/src/views/Wallet/index.js index 00a40178..f601fce2 100644 --- a/src/views/Wallet/index.js +++ b/src/views/Wallet/index.js @@ -78,6 +78,7 @@ const MainContent = styled.article` flex-direction: column; overflow: auto; border-top-right-radius: 4px; + border-top-left-radius: 4px; @media screen and (max-width: ${SCREEN_SIZE.SM}) { ${props => @@ -91,6 +92,7 @@ const MainContent = styled.article` @media screen and (max-width: 1170px) { border-top-right-radius: 0px; + border-top-left-radius: 0px; } `;