diff --git a/app/routes/activity/components/Activity.js b/app/routes/activity/components/Activity.js
index 37a061b6..3ff58af9 100644
--- a/app/routes/activity/components/Activity.js
+++ b/app/routes/activity/components/Activity.js
@@ -71,7 +71,7 @@ class Activity extends Component {
value={tab === 1 ? '' : invoicesSearchText}
onChange={event => (tab === 1 ? null : searchInvoices(event.target.value))}
className={`${styles.text} ${styles.input}`}
- placeholder={tab === 1 ? 'Search transactions by amount, public key, channel' : 'Search requests by memo'}
+ placeholder={tab === 1 ? 'Search by amount, hash, memo, etc' : 'Search requests by memo'}
type='text'
id='invoiceSearch'
/>
@@ -79,18 +79,7 @@ class Activity extends Component {
- this.setState({ tab: 1 })}
- >
- Payments
-
- this.setState({ tab: 2 })}
- >
- Requests
-
+ Activity
{
diff --git a/app/routes/activity/components/Activity.scss b/app/routes/activity/components/Activity.scss
index 53eddf9e..569b95fc 100644
--- a/app/routes/activity/components/Activity.scss
+++ b/app/routes/activity/components/Activity.scss
@@ -34,31 +34,19 @@
background: $lightgrey;
.header {
- width: 75%;
+ padding: 60px 0 20px 0;
margin: 0 auto;
- .title {
- display: inline-block;
- margin: 60px 0 20px 0;
- padding: 5px 10px;
- background: $lightgrey;
- color: $darkestgrey;
+ h2 {
+ margin-left: auto;
+ margin-right: auto;
+ padding-left: 100px;
+ padding-right: 100px;
text-transform: uppercase;
+ letter-spacing: 1.5px;
+ color: $darkestgrey;
font-size: 14px;
- font-weight: 400;
- letter-spacing: 1.6px;
- cursor: pointer;
- transition: all 0.5s;
-
- &:first-child {
- border-right: 1px solid $darkestgrey;
- }
-
-
- &.active {
- color: $main;
- font-weight: bold;
- }
+ font-weight: 400;
}
}
}
diff --git a/app/routes/activity/components/components/Invoice/Invoice.js b/app/routes/activity/components/components/Invoice/Invoice.js
index fc03e83b..e634ac90 100644
--- a/app/routes/activity/components/components/Invoice/Invoice.js
+++ b/app/routes/activity/components/components/Invoice/Invoice.js
@@ -29,12 +29,7 @@ const Invoice = ({ invoice, ticker, currentTicker }) => (
- {
- invoice.settled ?
- invoice.settle_date * 1000
- :
- invoice.creation_date * 1000
- }
+ {invoice.creation_date * 1000}