diff --git a/components/core/Profile.js b/components/core/Profile.js index 14b4961d..615306f7 100644 --- a/components/core/Profile.js +++ b/components/core/Profile.js @@ -115,10 +115,13 @@ const STYLES_STAT = css` `; const STYLES_EXPLORE = css` + font-size: ${Constants.typescale.lvl1}; + font-family: ${Constants.font.text}; + font-weight: 400; margin: 64px auto 64px auto; - height: 1px; - width: 80px; - background-color: ${Constants.system.gray}; + width: 120px; + padding-top: 16px; + border-top: 1px solid ${Constants.system.black}; `; const STYLES_BUTTON = css` @@ -312,6 +315,8 @@ export default class Profile extends React.Component { let subscribers = this.props.creator.subscribers || []; let exploreSlates = this.props.exploreSlates; + console.log(this.props.onAction, exploreSlates); + let slates = []; if (this.state.tab === 1) { if (this.state.slateTab === 0) { @@ -580,23 +585,31 @@ export default class Profile extends React.Component { /> ) : ( - - - {this.state.slateTab === 0 - ? `This user does not have any public slates yet` - : `This user is not following any slates yet`} - {this.props.external ? ( -
+ + + {this.state.slateTab === 0 + ? `This user does not have any public slates yet` + : `This user is not following any slates yet`} + +
Explore Slates
- ) : null} + ) : ( + + + {this.state.slateTab === 0 + ? `This user does not have any public slates yet` + : `This user is not following any slates yet`} + + )} )}