From dd8119799082d7f78c9e608db6d8c2cb01963ae5 Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Tue, 18 Dec 2018 20:22:36 +0100 Subject: [PATCH] break text inside send button --- src/views/Wallet/views/Account/Send/ethereum/index.js | 1 + src/views/Wallet/views/Account/Send/ripple/index.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/views/Wallet/views/Account/Send/ethereum/index.js b/src/views/Wallet/views/Account/Send/ethereum/index.js index 63a86a14..603d27ca 100644 --- a/src/views/Wallet/views/Account/Send/ethereum/index.js +++ b/src/views/Wallet/views/Account/Send/ethereum/index.js @@ -132,6 +132,7 @@ const ToggleAdvancedSettingsButton = styled(Button)` const SendButton = styled(Button)` min-width: ${props => (props.isAdvancedSettingsHidden ? '50%' : '100%')}; + word-break: break-all; @media screen and (max-width: ${SmallScreenWidth}) { margin-top: ${props => (props.isAdvancedSettingsHidden ? '10px' : 0)}; diff --git a/src/views/Wallet/views/Account/Send/ripple/index.js b/src/views/Wallet/views/Account/Send/ripple/index.js index 136031bc..3767107a 100644 --- a/src/views/Wallet/views/Account/Send/ripple/index.js +++ b/src/views/Wallet/views/Account/Send/ripple/index.js @@ -82,6 +82,7 @@ const ToggleAdvancedSettingsWrapper = styled.div` const SendButton = styled(Button)` min-width: ${props => (props.isAdvancedSettingsHidden ? '50%' : '100%')}; + word-break: break-all; @media screen and (max-width: ${SmallScreenWidth}) { margin-top: ${props => (props.isAdvancedSettingsHidden ? '10px' : 0)};