Browse Source

fix(channel styling): remove margin now that header isnt position: fixed

renovate/lint-staged-8.x
Jack Mallers 7 years ago
parent
commit
88ed67bd5c
  1. 1
      app/components/Channels/Channel.scss
  2. 2
      app/components/Channels/ClosedPendingChannel.js
  3. 2
      app/components/Channels/OpenPendingChannel.js

1
app/components/Channels/Channel.scss

@ -69,7 +69,6 @@
.left, .right {
padding: 0 10px;
margin-bottom: 5;
margin-top: 25px;
section {
margin-bottom: 20px;

2
app/components/Channels/ClosedPendingChannel.js

@ -6,7 +6,7 @@ import styles from './ClosedPendingChannel.scss'
const ClosedPendingChannel = ({ ticker, channel: { channel, closing_txid }, currentTicker, explorerLinkBase }) => (
<li className={styles.channel} onClick={() => shell.openExternal(`${explorerLinkBase}/tx/${closing_txid}`)}>
<h1 className={styles.closing}>Status: Closing</h1>
<h1 className={styles.closing}>Closing Channel...</h1>
<div className={styles.left}>
<section className={styles.remotePubkey}>
<span>Remote Pubkey</span>

2
app/components/Channels/OpenPendingChannel.js

@ -6,7 +6,7 @@ import styles from './OpenPendingChannel.scss'
const OpenPendingChannel = ({ ticker, channel: { channel }, currentTicker, explorerLinkBase }) => (
<li className={styles.channel} onClick={() => shell.openExternal(`${explorerLinkBase}/tx/${channel.channel_point.split(':')[0]}`)}>
<h1 className={styles.pending}>Pending</h1>
<h1 className={styles.pending}>Opening Channel...</h1>
<div className={styles.left}>
<section className={styles.remotePubkey}>
<span>Remote Pubkey</span>

Loading…
Cancel
Save