1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

Removing un-necessary comma (#12883)

* Confirm transaction screen style fixes
This commit is contained in:
Jyoti Puri 2021-11-30 00:32:54 +05:30 committed by GitHub
parent 3f8cbd5202
commit 7ace0497c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 4 deletions

View File

@ -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"

View File

@ -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 {

View File

@ -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>

View File

@ -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"