diff options
author | Dan Miller <danjm.com@gmail.com> | 2018-09-10 01:47:49 +0800 |
---|---|---|
committer | Dan Miller <danjm.com@gmail.com> | 2018-12-04 11:36:04 +0800 |
commit | 58feb24fa72bac5c79daa96956810dd2233adf02 (patch) | |
tree | 60ff4b740d7d2589a998d0ceefcf2c27d3a2c85b | |
parent | d07d40cf7cf013bd9b9968fa6bc37bcfd1367cf9 (diff) | |
download | tangerine-wallet-browser-58feb24fa72bac5c79daa96956810dd2233adf02.tar tangerine-wallet-browser-58feb24fa72bac5c79daa96956810dd2233adf02.tar.gz tangerine-wallet-browser-58feb24fa72bac5c79daa96956810dd2233adf02.tar.bz2 tangerine-wallet-browser-58feb24fa72bac5c79daa96956810dd2233adf02.tar.lz tangerine-wallet-browser-58feb24fa72bac5c79daa96956810dd2233adf02.tar.xz tangerine-wallet-browser-58feb24fa72bac5c79daa96956810dd2233adf02.tar.zst tangerine-wallet-browser-58feb24fa72bac5c79daa96956810dd2233adf02.zip |
Styling fixes for gas customization advanced tab content.
4 files changed, 2 insertions, 3 deletions
diff --git a/ui/app/components/gas-customization/gas-modal-page-container/advanced-tab-content/advanced-tab-content.component.js b/ui/app/components/gas-customization/gas-modal-page-container/advanced-tab-content/advanced-tab-content.component.js index cd5ca7d35..38fa117f9 100644 --- a/ui/app/components/gas-customization/gas-modal-page-container/advanced-tab-content/advanced-tab-content.component.js +++ b/ui/app/components/gas-customization/gas-modal-page-container/advanced-tab-content/advanced-tab-content.component.js @@ -39,7 +39,7 @@ export default class AdvancedTabContent extends Component { } infoButton (onClick) { - return <i className="fas fa-info-circle" onClick={onClick} /> + return <i className="fa fa-info-circle" onClick={onClick} /> } renderDataSummary (totalFee, millisecondsRemaining) { diff --git a/ui/app/components/gas-customization/gas-modal-page-container/advanced-tab-content/index.scss b/ui/app/components/gas-customization/gas-modal-page-container/advanced-tab-content/index.scss index 28e2fde9b..aced75449 100644 --- a/ui/app/components/gas-customization/gas-modal-page-container/advanced-tab-content/index.scss +++ b/ui/app/components/gas-customization/gas-modal-page-container/advanced-tab-content/index.scss @@ -3,7 +3,6 @@ .advanced-tab { display: flex; flex-flow: column; - border-bottom: 1px solid $alto; height: 430px; &__transaction-data-summary, diff --git a/ui/app/components/gas-customization/gas-modal-page-container/basic-tab-content/index.scss b/ui/app/components/gas-customization/gas-modal-page-container/basic-tab-content/index.scss index ba665716c..d5eb5d414 100644 --- a/ui/app/components/gas-customization/gas-modal-page-container/basic-tab-content/index.scss +++ b/ui/app/components/gas-customization/gas-modal-page-container/basic-tab-content/index.scss @@ -2,6 +2,7 @@ display: flex; flex-direction: column; align-items: center; + margin-bottom: 22px; &__title { margin-top: 19px; 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 427b58888..f02045fe3 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 @@ -53,6 +53,5 @@ background: white; color: $dusty-gray; border-top: 1px solid $mischka; - margin-top: 22px; } } |