diff --git a/app/components/Activity/Activity.scss b/app/components/Activity/Activity.scss index e6630de2..3e40dc93 100644 --- a/app/components/Activity/Activity.scss +++ b/app/components/Activity/Activity.scss @@ -162,7 +162,6 @@ cursor: pointer; height: 76px; align-items: center; - font-size: 14px; transition: background-color 0.1s linear; transition-delay: 0.1s; color: var(--primaryText); @@ -224,14 +223,10 @@ flex-direction: column; flex: 6; justify-content: space-evenly; - - &:nth-child(2) { - font-size: 10px; - } + width: 75%; .title { margin-bottom: 10px; - font-size: 14px; } .subtitle { @@ -268,7 +263,6 @@ h3 { display: inline-block; - font-size: 14px; font-weight: 300; letter-spacing: 1.2px; @@ -286,6 +280,7 @@ text-align: right; font-size: 12px; color: var(--primaryText); + width: 25%; span { &:nth-child(1) { diff --git a/app/components/Activity/Invoice/Invoice.js b/app/components/Activity/Invoice/Invoice.js index 90881607..d8bb8de2 100644 --- a/app/components/Activity/Invoice/Invoice.js +++ b/app/components/Activity/Invoice/Invoice.js @@ -15,19 +15,17 @@ const Invoice = ({ invoice, ticker, currentTicker, showActivityModal, currencyNa onClick={() => showActivityModal('INVOICE', invoice.payment_request)} >
-
- -
+
-
+

{invoice.settled ? ( diff --git a/app/components/Activity/Payment/Payment.js b/app/components/Activity/Payment/Payment.js index 95db2f9c..8f3ebcd8 100644 --- a/app/components/Activity/Payment/Payment.js +++ b/app/components/Activity/Payment/Payment.js @@ -35,12 +35,13 @@ const Payment = ({ onClick={() => showActivityModal('PAYMENT', payment.payment_hash)} >
-
- -
+
-
+

{displayNodeName(payment.path[payment.path.length - 1])}

diff --git a/app/components/Activity/Transaction/Transaction.js b/app/components/Activity/Transaction/Transaction.js index 2301199c..e755b476 100644 --- a/app/components/Activity/Transaction/Transaction.js +++ b/app/components/Activity/Transaction/Transaction.js @@ -23,12 +23,13 @@ const Transaction = ({ onClick={() => showActivityModal('TRANSACTION', transaction.tx_hash)} >
-
- -
+
-
+

{transaction.received ? ( diff --git a/app/components/UI/GlobalStyle.js b/app/components/UI/GlobalStyle.js index f8f74d3f..8e27fc07 100644 --- a/app/components/UI/GlobalStyle.js +++ b/app/components/UI/GlobalStyle.js @@ -100,12 +100,14 @@ const GlobalStyle = createGlobalStyle` } .hint--bottom::before, - .hint--bottom-left::before { + .hint--bottom-left::before, + .hint--bottom-right::before { border-bottom-color: #404040; } .hint--top::before, - .hint--top-left::before { + .hint--top-left::before, + .hint--top-right::before { border-top-color: #404040; } @@ -147,7 +149,8 @@ const GlobalStyle = createGlobalStyle` transform: translateY(-8px); } - .hint--top-left::before { + .hint--top-left::before, + .hint--top-right::before { margin-bottom: -12px; } @@ -155,14 +158,26 @@ const GlobalStyle = createGlobalStyle` margin-right: -6px; } + .hint--top-right::after { + margin-right: 6px; + } + .hint--top-left::before, .hint--top-left::after { bottom: 100%; right: 12px; } + .hint--top-right::before, + .hint--top-right::after { + bottom: 100%; + left: 12px; + } + .hint--top-left:hover::after, - .hint--top-left:hover::before { + .hint--top-left:hover::before, + .hint--top-right:hover::after, + .hint--top-right:hover::before { transform: translateY(-8px); }