diff options
author | Thomas Huang <tmashuang@users.noreply.github.com> | 2019-04-18 01:42:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-18 01:42:49 +0800 |
commit | 83f3e8ab983e420a25c14ae35398f80d740dae54 (patch) | |
tree | 3f66c23438b1208fefff4a7ba6332afd55127039 /ui/app/css | |
parent | 0db0a187c8f30dcf332cf4d41a2f957171b25630 (diff) | |
parent | 597c490928fc665d4329bf87ef791134df4c67bb (diff) | |
download | tangerine-wallet-browser-83f3e8ab983e420a25c14ae35398f80d740dae54.tar tangerine-wallet-browser-83f3e8ab983e420a25c14ae35398f80d740dae54.tar.gz tangerine-wallet-browser-83f3e8ab983e420a25c14ae35398f80d740dae54.tar.bz2 tangerine-wallet-browser-83f3e8ab983e420a25c14ae35398f80d740dae54.tar.lz tangerine-wallet-browser-83f3e8ab983e420a25c14ae35398f80d740dae54.tar.xz tangerine-wallet-browser-83f3e8ab983e420a25c14ae35398f80d740dae54.tar.zst tangerine-wallet-browser-83f3e8ab983e420a25c14ae35398f80d740dae54.zip |
Merge pull request #6468 from chikeichan/network-indicator-style-fix
Fix switcher height when Custom RPC is selected or loading
Diffstat (limited to 'ui/app/css')
-rw-r--r-- | ui/app/css/itcss/components/network.scss | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/ui/app/css/itcss/components/network.scss b/ui/app/css/itcss/components/network.scss index 5197f93e1..2c6ca2522 100644 --- a/ui/app/css/itcss/components/network.scss +++ b/ui/app/css/itcss/components/network.scss @@ -52,6 +52,11 @@ font-size: 12px; padding: 0 4px; } + + .fa-question-circle { + margin: 0 4px 0 6px; + font-size: 1rem; + } } .network-name { @@ -169,5 +174,22 @@ } .network-caret { - margin: 0 8px 2px; + margin: 0 8px; +} + +.network-loading-spinner { + display: flex; + flex-flow: row nowrap; + align-items: center; + position: relative; + height: 16px; + width: 16px; + margin-left: 5px; + + img { + height: 26px; + position: absolute; + top: -5px; + left: -6px; + } } |