Browse Source
Merge pull request #383 from LN-Zap/fix/loading-channels
fix(loading-channels): fix loadingchannels messed up styles
renovate/lint-staged-8.x
JimmyMow
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
12 additions and
6 deletions
-
app/components/Contacts/Network.js
-
app/components/Contacts/Network.scss
|
|
@ -189,10 +189,12 @@ class Network extends Component { |
|
|
|
|
|
|
|
return ( |
|
|
|
<li key={loadingPubkey} className={styles.channel}> |
|
|
|
<span>{nodeDisplay()}</span> |
|
|
|
<span className={`${styles.loading} hint--left`} data-hint='loading'> |
|
|
|
<i className={styles.spinner} /> |
|
|
|
</span> |
|
|
|
<section className={styles.channelTitle}> |
|
|
|
<span className={`${styles.loading} hint--left`} data-hint='loading'> |
|
|
|
<i className={styles.spinner} /> |
|
|
|
</span> |
|
|
|
<span>{nodeDisplay()}</span> |
|
|
|
</section> |
|
|
|
</li> |
|
|
|
) |
|
|
|
}) |
|
|
|
|
|
@ -333,8 +333,12 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.loading i { |
|
|
|
vertical-align: top; |
|
|
|
.loading { |
|
|
|
margin-right: 5px; |
|
|
|
|
|
|
|
i { |
|
|
|
vertical-align: top; |
|
|
|
} |
|
|
|
|
|
|
|
&:nth-child(1) { |
|
|
|
margin-right: 5px; |
|
|
|