diff options
author | Dan Miller <danjm.com@gmail.com> | 2018-12-13 00:14:47 +0800 |
---|---|---|
committer | Dan Miller <danjm.com@gmail.com> | 2018-12-13 00:35:38 +0800 |
commit | dabf263733a024fa5e190a64edce4aa1476130ea (patch) | |
tree | fb7fbac1e2707751ecda38aaa10c48a52f011e09 /ui | |
parent | 3cca6fc8862673eb96a04586c5d31438f875431a (diff) | |
download | tangerine-wallet-browser-dabf263733a024fa5e190a64edce4aa1476130ea.tar tangerine-wallet-browser-dabf263733a024fa5e190a64edce4aa1476130ea.tar.gz tangerine-wallet-browser-dabf263733a024fa5e190a64edce4aa1476130ea.tar.bz2 tangerine-wallet-browser-dabf263733a024fa5e190a64edce4aa1476130ea.tar.lz tangerine-wallet-browser-dabf263733a024fa5e190a64edce4aa1476130ea.tar.xz tangerine-wallet-browser-dabf263733a024fa5e190a64edce4aa1476130ea.tar.zst tangerine-wallet-browser-dabf263733a024fa5e190a64edce4aa1476130ea.zip |
Fix width of gas customization model in notification view
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/gas-customization/gas-modal-page-container/index.scss | 2 | ||||
-rw-r--r-- | ui/app/components/gas-customization/gas-price-button-group/index.scss | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/ui/app/components/gas-customization/gas-modal-page-container/index.scss b/ui/app/components/gas-customization/gas-modal-page-container/index.scss index efba24e02..b9e0f59c4 100644 --- a/ui/app/components/gas-customization/gas-modal-page-container/index.scss +++ b/ui/app/components/gas-customization/gas-modal-page-container/index.scss @@ -8,8 +8,6 @@ overflow-y: initial; @media screen and (max-width: $break-small) { - max-width: 344px; - &__content { display: flex; overflow-y: initial; diff --git a/ui/app/components/gas-customization/gas-price-button-group/index.scss b/ui/app/components/gas-customization/gas-price-button-group/index.scss index c8b31fc83..cb2f3ecf1 100644 --- a/ui/app/components/gas-customization/gas-price-button-group/index.scss +++ b/ui/app/components/gas-customization/gas-price-button-group/index.scss @@ -65,7 +65,10 @@ .gas-price-button-group--small { display: flex; justify-content: stretch; - max-width: 260px; + + @media screen and (max-width: $break-small) { + max-width: 260px; + } &__button-fiat-price { font-size: 13px; |