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:
parent
311ca1f3ca
commit
7c10cda8a4
@ -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
|
||||
|
@ -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
|
||||
|
@ -21,6 +21,7 @@
|
||||
}
|
||||
|
||||
&__icon {
|
||||
margin-left: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
@ -75,7 +75,6 @@ h2.page-subtitle {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.left-menu-wrapper {
|
||||
|
Loading…
Reference in New Issue
Block a user