Merge pull request #386 from filecoin-project/@tarafanlin/slate

nits styling for external slate view
This commit is contained in:
CAKE 2020-10-26 13:06:24 -07:00 committed by GitHub
commit af97cc9cb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 12 deletions

View File

@ -8,7 +8,7 @@ const STYLES_CONTAINER = css`
position: -webkit-sticky; position: -webkit-sticky;
position: sticky; position: sticky;
top: 0; top: 0;
padding: 24px 64px 24px 40px; padding: 24px 64px 24px 42px;
width: 100%; width: 100%;
margin: 0 auto; margin: 0 auto;
z-index: ${Constants.zindex.header}; z-index: ${Constants.zindex.header};

View File

@ -42,6 +42,7 @@ const STYLES_CREATOR = css`
flex-shrink: 0; flex-shrink: 0;
margin-right: 4px; margin-right: 4px;
text-decoration: none; text-decoration: none;
color: ${Constants.system.black};
:hover { :hover {
color: ${Constants.system.brand}; color: ${Constants.system.brand};
@ -73,7 +74,8 @@ const STYLES_TITLE = css`
font-family: ${Constants.font.medium}; font-family: ${Constants.font.medium};
font-weight: 400; font-weight: 400;
color: ${Constants.system.black}; color: ${Constants.system.black};
width: 70%; width: auto;
margin-right: 24px;
@media (max-width: ${Constants.sizes.mobile}px) { @media (max-width: ${Constants.sizes.mobile}px) {
font-size: ${Constants.typescale.lvl2}; font-size: ${Constants.typescale.lvl2};
@ -82,7 +84,7 @@ const STYLES_TITLE = css`
const STYLES_FLEX = css` const STYLES_FLEX = css`
display: flex; display: flex;
margin-bottom: 8px; margin-bottom: 12px;
@media (max-width: ${Constants.sizes.mobile}px) { @media (max-width: ${Constants.sizes.mobile}px) {
display: block; display: block;
@ -91,8 +93,9 @@ const STYLES_FLEX = css`
const STYLES_STATS = css` const STYLES_STATS = css`
font-size: ${Constants.typescale.lvl0}; font-size: ${Constants.typescale.lvl0};
margin-top: 32px; margin-top: 24px;
display: flex; display: flex;
line-height: 1.5;
`; `;
const STYLES_STAT = css` const STYLES_STAT = css`
@ -104,10 +107,11 @@ padding-left: 12px; */};
const STYLES_BUTTONS = css` const STYLES_BUTTONS = css`
display: flex; display: flex;
width: 240px; width: 200px;
height: 40px; height: 36px;
border-radius: 4px; border-radius: 4px;
border: 1px solid ${Constants.system.gray}; border: 1px solid ${Constants.system.gray};
flex-shrink: 0;
@media (max-width: ${Constants.sizes.mobile}px) { @media (max-width: ${Constants.sizes.mobile}px) {
margin: 12px 0; margin: 12px 0;
@ -116,7 +120,7 @@ const STYLES_BUTTONS = css`
const STYLES_BUTTON = css` const STYLES_BUTTON = css`
border-right: 1px solid ${Constants.system.gray}; border-right: 1px solid ${Constants.system.gray};
padding: 10px 24px; padding: 8px 4px;
cursor: pointer; cursor: pointer;
width: 50%; width: 50%;
font-family: ${Constants.font.medium}; font-family: ${Constants.font.medium};
@ -296,19 +300,17 @@ export default class SlatePage extends React.Component {
<div css={STYLES_STATS}> <div css={STYLES_STATS}>
<div css={STYLES_STAT}> <div css={STYLES_STAT}>
<div style={{ color: `${Constants.system.grayBlack}` }}>Data</div> <div style={{ color: `${Constants.system.grayBlack}` }}>Data</div>
<div style={{ fontFamily: `${Constants.font.semiBold}` }}> <div style={{ fontFamily: `${Constants.font.medium}` }}>
{this.props.slate.data.objects.length} {this.props.slate.data.objects.length}
</div> </div>
</div> </div>
<div css={STYLES_STAT}> <div css={STYLES_STAT}>
<div style={{ color: `${Constants.system.grayBlack}` }}>Contributors</div> <div style={{ color: `${Constants.system.grayBlack}` }}>Contributors</div>
<div style={{ fontFamily: `${Constants.font.semiBold}` }}> <div style={{ fontFamily: `${Constants.font.medium}` }}>{contributorsCount}</div>
{contributorsCount}
</div>
</div> </div>
{/* <div css={STYLES_STAT}> {/* <div css={STYLES_STAT}>
<div style={{ color: `${Constants.system.grayBlack}` }}>Followers</div> <div style={{ color: `${Constants.system.grayBlack}` }}>Followers</div>
<div style={{ fontFamily: `${Constants.font.semiBold}` }}>0</div> <div style={{ fontFamily: `${Constants.font.medium}` }}>0</div>
</div> */} </div> */}
</div> </div>
</div> </div>