1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-07 14:50:52 +00:00

fix wallet border-radius

This commit is contained in:
slowbackspace 2019-03-12 17:37:36 +01:00
parent c745ec37b7
commit bec12cbaf8

View File

@ -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;
}
`;