diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | ui/app/css/lib.css | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a4d0ddf9..c12ea6726 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/ui/app/css/lib.css b/ui/app/css/lib.css index dca73a6e8..425f41b20 100644 --- a/ui/app/css/lib.css +++ b/ui/app/css/lib.css @@ -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; |