mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Removing un-necessary comma (#12883)
* Confirm transaction screen style fixes
This commit is contained in:
parent
3f8cbd5202
commit
7ace0497c8
@ -841,8 +841,7 @@
|
||||
"description": "This is meant to be used as the $1 substitution editGasSubTextAmount"
|
||||
},
|
||||
"editGasSubTextFeeLabel": {
|
||||
"message": "Max fee:",
|
||||
"description": "$1 represents a dollar amount"
|
||||
"message": "Max fee:"
|
||||
},
|
||||
"editGasTitle": {
|
||||
"message": "Edit priority"
|
||||
|
@ -7,6 +7,15 @@
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
grid-gap: 5px;
|
||||
|
||||
&-subText {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.currency-display-component {
|
||||
margin-left: 4px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__detail-values {
|
||||
|
@ -58,7 +58,12 @@ export default function TransactionDetailItem({
|
||||
</Typography>
|
||||
)}
|
||||
|
||||
<Typography variant={TYPOGRAPHY.H7} color={COLORS.UI4} align="end">
|
||||
<Typography
|
||||
variant={TYPOGRAPHY.H7}
|
||||
color={COLORS.UI4}
|
||||
align="end"
|
||||
className="transaction-detail-item__row-subText"
|
||||
>
|
||||
{subText}
|
||||
</Typography>
|
||||
</div>
|
||||
|
@ -519,7 +519,6 @@ export default class ConfirmTransactionBase extends Component {
|
||||
<b key="editGasSubTextFeeLabel">
|
||||
{t('editGasSubTextFeeLabel')}
|
||||
</b>
|
||||
,
|
||||
<div
|
||||
key="editGasSubTextFeeValue"
|
||||
className="confirm-page-container-content__currency-container"
|
||||
|
Loading…
Reference in New Issue
Block a user