- }
- error={ totalError }
- >
-
@@ -125,7 +128,7 @@ export default class Details extends Component {
label={
}
onClick={ this.onCheckExtras }
@@ -152,13 +155,13 @@ export default class Details extends Component {
label={
}
hint={
}
value={ sender }
@@ -174,16 +177,17 @@ export default class Details extends Component {
return (
}
hint={
}
error={ recipientError }
diff --git a/js/src/views/Account/Transfer/errors.js b/js/src/views/Account/Transfer/errors.js
index 2aac3ccda..57ea1ed53 100644
--- a/js/src/views/Account/Transfer/errors.js
+++ b/js/src/views/Account/Transfer/errors.js
@@ -15,14 +15,14 @@
// along with Parity. If not, see .
const ERRORS = {
- requireSender: 'a valid sender is required for the transaction',
- requireRecipient: 'a recipient network address is required for the transaction',
- invalidAddress: 'the supplied address is an invalid network address',
- invalidAmount: 'the supplied amount should be a valid positive number',
- invalidDecimals: 'the supplied amount exceeds the allowed decimals',
- largeAmount: 'the transaction total is higher than the available balance',
- gasException: 'the transaction will throw an exception with the current values',
- gasBlockLimit: 'the transaction execution will exceed the block gas limit'
+ requireSender: 'A valid sender is required for the transaction',
+ requireRecipient: 'A recipient network address is required for the transaction',
+ invalidAddress: 'The supplied address is an invalid network address',
+ invalidAmount: 'The supplied amount should be a valid positive number',
+ invalidDecimals: 'The supplied amount exceeds the allowed decimals',
+ largeAmount: 'The transaction total is higher than the available balance',
+ gasException: 'The transaction will throw an exception with the current values',
+ gasBlockLimit: 'The transaction execution will exceed the block gas limit'
};
export default ERRORS;
diff --git a/js/src/views/Account/Transfer/transfer.css b/js/src/views/Account/Transfer/transfer.css
index 36f0d278f..a59f5e261 100644
--- a/js/src/views/Account/Transfer/transfer.css
+++ b/js/src/views/Account/Transfer/transfer.css
@@ -139,8 +139,20 @@
font-size: 0.75em;
}
-.inputoverride {
- padding-top: 24px !important;
+.inputContainer {
+ padding-top: 10px;
+}
+
+.totalAmount {
+ padding-top: 6px;
+ font-size: 18px;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+
+.totalTx {
+ padding-top: 10px;
}
.contentTitle {