From dabf263733a024fa5e190a64edce4aa1476130ea Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Wed, 12 Dec 2018 12:44:47 -0330 Subject: Fix width of gas customization model in notification view --- .../components/gas-customization/gas-modal-page-container/index.scss | 2 -- .../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; -- cgit