diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-06-29 05:25:22 +0800 |
---|---|---|
committer | Dan Finlay <somniac@me.com> | 2016-06-29 05:25:22 +0800 |
commit | c6187b080af0cc63bea113b8e6c115a5dfe4bb4d (patch) | |
tree | 837ff735bb116796c464dd02e0779f27cb172ce5 /ui/app | |
parent | 6238af633056c6136e37106bf5517ef87e3ff8f1 (diff) | |
download | tangerine-wallet-browser-c6187b080af0cc63bea113b8e6c115a5dfe4bb4d.tar tangerine-wallet-browser-c6187b080af0cc63bea113b8e6c115a5dfe4bb4d.tar.gz tangerine-wallet-browser-c6187b080af0cc63bea113b8e6c115a5dfe4bb4d.tar.bz2 tangerine-wallet-browser-c6187b080af0cc63bea113b8e6c115a5dfe4bb4d.tar.lz tangerine-wallet-browser-c6187b080af0cc63bea113b8e6c115a5dfe4bb4d.tar.xz tangerine-wallet-browser-c6187b080af0cc63bea113b8e6c115a5dfe4bb4d.tar.zst tangerine-wallet-browser-c6187b080af0cc63bea113b8e6c115a5dfe4bb4d.zip |
Fix out-of-place positioning of pending tx badges. (#354)
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/css/lib.css | 5 |
1 files changed, 3 insertions, 2 deletions
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; |