mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-13 20:08:56 +00:00
fix paddings on small screens
This commit is contained in:
parent
a8d39d95c2
commit
12d6113b9c
@ -404,7 +404,9 @@ const AccountSend = (props: Props) => {
|
||||
</ToggleAdvancedSettingsButton>
|
||||
|
||||
{isAdvancedSettingsHidden && (
|
||||
<FormButtons>
|
||||
<FormButtons
|
||||
isAdvancedSettingsHidden={isAdvancedSettingsHidden}
|
||||
>
|
||||
<ClearButton
|
||||
isWhite
|
||||
onClick={() => onClear()}
|
||||
@ -413,7 +415,6 @@ const AccountSend = (props: Props) => {
|
||||
</ClearButton>
|
||||
<SendButton
|
||||
isDisabled={isSendButtonDisabled}
|
||||
isAdvancedSettingsHidden={isAdvancedSettingsHidden}
|
||||
onClick={() => onSend()}
|
||||
>
|
||||
{sendButtonText}
|
||||
@ -424,7 +425,9 @@ const AccountSend = (props: Props) => {
|
||||
|
||||
{advanced && (
|
||||
<AdvancedForm {...props}>
|
||||
<FormButtons>
|
||||
<FormButtons
|
||||
isAdvancedSettingsHidden={isAdvancedSettingsHidden}
|
||||
>
|
||||
<ClearButton
|
||||
isWhite
|
||||
onClick={() => onClear()}
|
||||
|
@ -358,7 +358,9 @@ const AccountSend = (props: Props) => {
|
||||
</ToggleAdvancedSettingsButton>
|
||||
|
||||
{isAdvancedSettingsHidden && (
|
||||
<FormButtons>
|
||||
<FormButtons
|
||||
isAdvancedSettingsHidden={isAdvancedSettingsHidden}
|
||||
>
|
||||
<ClearButton
|
||||
isWhite
|
||||
onClick={() => onClear()}
|
||||
@ -367,7 +369,6 @@ const AccountSend = (props: Props) => {
|
||||
</ClearButton>
|
||||
<SendButton
|
||||
isDisabled={isSendButtonDisabled}
|
||||
isAdvancedSettingsHidden={isAdvancedSettingsHidden}
|
||||
onClick={() => onSend()}
|
||||
>
|
||||
{sendButtonText}
|
||||
@ -378,7 +379,9 @@ const AccountSend = (props: Props) => {
|
||||
|
||||
{advanced && (
|
||||
<AdvancedForm {...props}>
|
||||
<FormButtons>
|
||||
<FormButtons
|
||||
isAdvancedSettingsHidden={isAdvancedSettingsHidden}
|
||||
>
|
||||
<ClearButton
|
||||
isWhite
|
||||
onClick={() => onClear()}
|
||||
|
Loading…
Reference in New Issue
Block a user