1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 03:12:42 +02:00

Fix out-of-place positioning of pending tx badges. (#354)

This commit is contained in:
Kevin Serrano 2016-06-28 14:25:22 -07:00 committed by Dan Finlay
parent 6238af6330
commit c6187b080a
2 changed files with 4 additions and 2 deletions

View File

@ -9,6 +9,7 @@
- Wallet titles are now properly truncated in transaction confirmation.
- Fix formatting on terms & conditions page.
- Now enforce 30 character limit on wallet names.
- Fix out-of-place positioning of pending transaction badges on wallet list.
## 2.4.4 2016-06-23

View File

@ -183,12 +183,13 @@ hr.horizontal-line {
.pending-dot {
background: red;
left: 57px;
left: 14px;
top: 14px;
color: white;
border-radius: 10px;
height: 20px;
min-width: 20px;
position: absolute;
position: relative;
display: flex;
align-items: center;
justify-content: center;