1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix alignment on right arrow of confirm tx screens

This commit is contained in:
Chi Kei Chan 2017-10-25 00:24:26 -07:00
parent 311ca1f3ca
commit 7c10cda8a4
5 changed files with 12 additions and 4 deletions

View File

@ -194,7 +194,7 @@ ConfirmSendEther.prototype.render = function () {
this.inputs = []
return (
h('div.confirm-screen-container', {
h('div.confirm-screen-container.confirm-send-ether', {
style: { minWidth: '355px' },
}, [
// Main Send token Card

View File

@ -263,7 +263,7 @@ ConfirmSendToken.prototype.render = function () {
this.inputs = []
return (
h('div.confirm-screen-container', {
h('div.confirm-screen-container.confirm-send-token', {
style: { minWidth: '355px' },
}, [
// Main Send token Card

View File

@ -21,6 +21,7 @@
}
&__icon {
margin-left: 20px;
cursor: pointer;
}

View File

@ -75,7 +75,7 @@
flex: 0 0 auto;
@media screen and (max-width: $break-small) {
font-size: 22px;
font-size: 20px;
}
}
@ -142,6 +142,14 @@
height: 16px;
}
.confirm-send-ether,
.confirm-send-token {
i.fa-arrow-right {
align-self: start;
margin: 24px 14px 0 !important;
}
}
.confirm-screen-identicons {
margin-top: 24px;
flex: 0 0 auto;

View File

@ -75,7 +75,6 @@ h2.page-subtitle {
display: flex;
flex-direction: row;
align-items: center;
margin-right: 20px;
}
.left-menu-wrapper {