1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

remove data set listing on frontpage for now

* will be added back in https://github.com/oceanprotocol/commons-marketplace/pull/19
This commit is contained in:
Matthias Kretschmann 2019-03-04 14:07:18 -03:00
parent b3459547e3
commit c4b100bad4
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 0 additions and 27 deletions

View File

@ -8,21 +8,3 @@
margin-bottom: $spacer * 4;
}
}
.published {
margin-top: $spacer * 3;
margin-bottom: $spacer;
> div {
text-align: center;
margin-top: $spacer;
margin-bottom: $spacer;
}
}
.subTitle {
font-size: $font-size-h4;
color: $brand-grey-light;
border-bottom: 1px solid $brand-grey-lighter;
padding-bottom: $spacer / 2;
}

View File

@ -41,15 +41,6 @@ class Home extends Component<HomeProps, HomeState> {
}
/>
</Form>
<div className={styles.published}>
<h2 className={styles.subTitle}>Your Data Sets</h2>
<div>
<p>None yet.</p>
<Link to="/publish">+ Publish A Data Set</Link>
</div>
</div>
</Route>
)
}