aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.component.js
diff options
context:
space:
mode:
authorDan Miller <danjm.com@gmail.com>2018-08-06 22:34:06 +0800
committerDan Miller <danjm.com@gmail.com>2018-12-04 11:36:04 +0800
commit5e7409482b6fc55eafc330e4bc119f7485f068bb (patch)
tree2368df863dcda9cffc49f04a95d8a05224ac0f4e /ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.component.js
parent88d8eb289edd7bec86993aac946ac85e4e5219ec (diff)
downloadtangerine-wallet-browser-5e7409482b6fc55eafc330e4bc119f7485f068bb.tar.gz
tangerine-wallet-browser-5e7409482b6fc55eafc330e4bc119f7485f068bb.tar.zst
tangerine-wallet-browser-5e7409482b6fc55eafc330e4bc119f7485f068bb.zip
Use BEM for css in gas-modal-page-container
Diffstat (limited to 'ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.component.js')
-rw-r--r--ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.component.js18
1 files changed, 10 insertions, 8 deletions
diff --git a/ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.component.js b/ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.component.js
index 51a202df1..697594ec9 100644
--- a/ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.component.js
+++ b/ui/app/components/gas-customization/gas-modal-page-container/gas-modal-page-container.component.js
@@ -16,24 +16,26 @@ export default class GasModalPageContainer extends Component {
renderBasicTabContent () {
return (
- <div className="basic-tab"/>
+ <div className="gas-modal-content__basic-tab"/>
)
}
renderAdvancedTabContent () {
return (
- <div className="advanced-tab"/>
+ <div className="gas-modal-content__advanced-tab"/>
)
}
renderInfoRow (className, totalLabelKey, fiatTotal, cryptoTotal) {
return (
<div className={className}>
- <div className="total-info">
- <span className="total-label">{`${this.context.t(totalLabelKey)}:`}</span><span className="total-value">{fiatTotal}</span>
+ <div className={`${className}__total-info`}>
+ <span className={`${className}__total-info__total-label`}>{`${this.context.t(totalLabelKey)}:`}</span>
+ <span className={`${className}__total-info__total-value`}>{fiatTotal}</span>
</div>
- <div className="sum-info">
- <span className="sum-label">{`${this.context.t('amountPlusTxFee')}`}</span><span className="sum-value">{cryptoTotal}</span>
+ <div className={`${className}__sum-info`}>
+ <span className={`${className}__sum-info__sum-label`}>{`${this.context.t('amountPlusTxFee')}`}</span>
+ <span className={`${className}__sum-info__sum-value`}>{cryptoTotal}</span>
</div>
</div>
)
@@ -43,8 +45,8 @@ export default class GasModalPageContainer extends Component {
return (
<div className="gas-modal-content">
{ mainTabContent() }
- { this.renderInfoRow('info-row--fade', 'originalTotal', '$20.02 USD', '0.06685 ETH') }
- { this.renderInfoRow('info-row', 'newTotal', '$20.02 USD', '0.06685 ETH') }
+ { this.renderInfoRow('gas-modal-content__info-row--fade', 'originalTotal', '$20.02 USD', '0.06685 ETH') }
+ { this.renderInfoRow('gas-modal-content__info-row', 'newTotal', '$20.02 USD', '0.06685 ETH') }
</div>
)
}