From cbb5a8b8772dc47ed9cc5ef3928300f784a3f63e Mon Sep 17 00:00:00 2001 From: slowbackspace Date: Tue, 16 Apr 2019 17:26:36 +0200 Subject: [PATCH] fix xrp advanced settings inputs width --- .../ripple/components/AdvancedForm/index.js | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/views/Wallet/views/Account/Send/ripple/components/AdvancedForm/index.js b/src/views/Wallet/views/Account/Send/ripple/components/AdvancedForm/index.js index fcf2c39f..ad7a84e9 100644 --- a/src/views/Wallet/views/Account/Send/ripple/components/AdvancedForm/index.js +++ b/src/views/Wallet/views/Account/Send/ripple/components/AdvancedForm/index.js @@ -13,11 +13,6 @@ import type { Props as BaseProps } from '../../Container'; type Props = {| ...BaseProps, children: React.Node |}; -// TODO: Decide on a small screen width for the whole app -// and put it inside config/variables.js -// same variable also in "AccountSend/index.js" -const SmallScreenWidth = '850px'; - const InputLabelWrapper = styled.div` display: flex; align-items: center; @@ -36,24 +31,10 @@ const AdvancedSettingsWrapper = styled.div` const InputRow = styled.div` width: 100%; display: flex; - - @media screen and (max-width: ${SmallScreenWidth}) { - flex-direction: column; - } `; const StyledInput = styled(Input)` - /* min-height: 85px; */ padding-bottom: 28px; - &:first-child { - padding-right: 20px; - } - - @media screen and (max-width: ${SmallScreenWidth}) { - &:first-child { - padding-right: 0; - } - } `; const AdvancedSettingsSendButtonWrapper = styled.div`