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

Fix Account Names being cropped (#3626)

This commit is contained in:
Alexander Tseung 2018-03-20 04:32:20 -07:00 committed by Dan J Miller
parent 5cdaf270f7
commit 4af1003b0e
6 changed files with 6 additions and 11 deletions

View File

@ -87,7 +87,6 @@
flex: 1 0 auto; flex: 1 0 auto;
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
padding-top: 4px;
} }
&__check-mark { &__check-mark {
@ -115,13 +114,11 @@
color: $white; color: $white;
font-size: 18px; font-size: 18px;
font-weight: 300; font-weight: 300;
line-height: 16px;
} }
&__balance { &__balance {
color: $dusty-gray; color: $dusty-gray;
font-size: 14px; font-size: 14px;
line-height: 19px;
} }
&__action { &__action {

View File

@ -10,8 +10,9 @@
.network-component.pointer { .network-component.pointer {
border: 2px solid $silver; border: 2px solid $silver;
border-radius: 82px; border-radius: 82px;
padding: 3px; padding: 7px 3px;
flex: 0 0 auto; flex: 0 0 auto;
display: flex;
&.ethereum-network .menu-icon-circle div { &.ethereum-network .menu-icon-circle div {
background-color: rgba(3, 135, 137, .7) !important; background-color: rgba(3, 135, 137, .7) !important;

View File

@ -265,7 +265,6 @@ $wallet-view-bg: $alabaster;
.account-name { .account-name {
font-size: 24px; font-size: 24px;
font-weight: 300; font-weight: 300;
line-height: 20px;
color: $black; color: $black;
margin-top: 8px; margin-top: 8px;
margin-bottom: .9rem; margin-bottom: .9rem;

View File

@ -97,7 +97,7 @@
.tx-list-content-wrapper { .tx-list-content-wrapper {
align-items: stretch; align-items: stretch;
margin-bottom: 4px; margin: 4px 0;
flex: 1 0 auto; flex: 1 0 auto;
width: 100%; width: 100%;
display: flex; display: flex;
@ -136,6 +136,7 @@
align-self: center; align-self: center;
flex: 0 0 auto; flex: 0 0 auto;
margin-right: 16px; margin-right: 16px;
display: flex;
} }
.tx-list-account-and-status-wrapper { .tx-list-account-and-status-wrapper {
@ -192,6 +193,7 @@
} }
.tx-list-item { .tx-list-item {
height: 80px;
border-top: 1px solid rgb(231, 231, 231); border-top: 1px solid rgb(231, 231, 231);
flex: 0 0 auto; flex: 0 0 auto;
display: flex; display: flex;

View File

@ -13,7 +13,6 @@ body {
font-family: Roboto, Arial; font-family: Roboto, Arial;
color: #4d4d4d; color: #4d4d4d;
font-weight: 300; font-weight: 300;
line-height: 1.4em;
background: #f7f7f7; background: #f7f7f7;
width: 100%; width: 100%;
height: 100%; height: 100%;
@ -103,6 +102,7 @@ input.large-input {
&::after { &::after {
content: '\00D7'; content: '\00D7';
font-size: 40px; font-size: 40px;
line-height: 20px;
} }
} }

View File

@ -112,10 +112,6 @@ section {
display: block; display: block;
} }
body {
line-height: 1;
}
ol, ol,
ul { ul {
list-style: none; list-style: none;