changed <strong>

This commit is contained in:
Martina 2020-09-03 21:47:06 -07:00
parent c417843497
commit 400b1fcf3d
2 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ const UserEntry = ({ item }) => {
style={{ backgroundImage: `url(${item.data.photo})` }}
css={STYLES_PROFILE_IMAGE}
/>
{item.data.name ? <strong>{item.data.name}</strong> : null}
{item.data.name ? <div>{item.data.name}</div> : null}
<div>@{item.username}</div>
</div>
</div>

View File

@ -177,14 +177,14 @@ export default class SlatePreviewBlock extends React.Component {
return (
<div css={STYLES_BLOCK}>
<div css={STYLES_TITLE_LINE}>
<strong
<div
style={{
fontSize: Constants.typescale.lvl2,
fontFamily: Constants.font.semiBold,
}}
>
{this.props.slate.data.name}
</strong>
</div>
{this.props.editing ? (
this.props.slate.data.public ? (
<div