Skip to content

Commit

Permalink
Merge pull request #4432 from alextsg/fix-tokenlist-balance-overflow
Browse files Browse the repository at this point in the history
Fix ellipses
  • Loading branch information
danjm authored Jun 2, 2018
2 parents d454b5d + fd98ed5 commit e6769bd
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions ui/app/css/itcss/components/token-list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ $wallet-balance-breakpoint-range: "screen and (min-width: #{$break-large}) and (
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 1;
min-width: 0;
max-width: 100%;
}

&__token-balance, &__token-symbol {
font-size: 1.5rem;
display: inline-flex;
flex: 0 0 auto;

@media #{$wallet-balance-breakpoint-range} {
font-size: 95%;
Expand Down Expand Up @@ -72,10 +73,10 @@ $wallet-balance-breakpoint-range: "screen and (min-width: #{$break-large}) and (
}

&__balance-wrapper {
flex: 1 1 auto;
flex: 1;
flex-flow: row wrap;
display: flex;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
}
}

Expand Down

0 comments on commit e6769bd

Please sign in to comment.