mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 10:02:47 +03:00
removed unicode spaces
This commit is contained in:
parent
c85fcedad6
commit
1d02c2dd3a
@ -72,9 +72,9 @@ export class Comments extends Component {
|
||||
return (
|
||||
<div className="cb mt3 mb4">
|
||||
<p className="gray-50 body-large b">
|
||||
{this.props.comments.length}
|
||||
<span>{this.props.comments.length} </span>
|
||||
<span className="black">
|
||||
Comments
|
||||
Comments
|
||||
</span>
|
||||
</p>
|
||||
<p className="cl body-regular pointer" onClick={this.toggleDisplay}>
|
||||
@ -97,9 +97,9 @@ export class Comments extends Component {
|
||||
return (
|
||||
<div className="cb mt3 mb4">
|
||||
<p className="gray-50 body-large b">
|
||||
{this.props.comments.length}
|
||||
<span>{this.props.comments.length} </span>
|
||||
<span className="black">
|
||||
Comments
|
||||
Comments
|
||||
</span>
|
||||
</p>
|
||||
<p className="cl body-regular pointer" onClick={this.toggleDisplay}>
|
||||
|
@ -61,7 +61,7 @@ export class Pubs extends Component {
|
||||
<div className="fl body-regular-400 mw-336 w-336 pr3">
|
||||
<Link to={data.url}>
|
||||
<p className="one-line mw-336">
|
||||
{data.title}
|
||||
<span className="ml3">{data.title}</span>
|
||||
</p>
|
||||
</Link>
|
||||
</div>
|
||||
@ -91,7 +91,7 @@ export class Pubs extends Component {
|
||||
</div>
|
||||
<div className="w-100 flex">
|
||||
<p className="fl gray-50 body-regular-400" style={{flexBasis:336}}>
|
||||
Title
|
||||
<span className="ml3">Title</span>
|
||||
</p>
|
||||
<p className="fl gray-50 body-regular-400" style={{flexBasis:336}}>
|
||||
Host
|
||||
|
@ -111,7 +111,7 @@ export class Subs extends Component {
|
||||
<div className="fl mw-336" style={{flexBasis: 336}}>
|
||||
<Link to={data.url}>
|
||||
<p className="body-regular-400 one-line pr3">
|
||||
{data.title}
|
||||
<span className="ml3">{data.title}</span>
|
||||
</p>
|
||||
</Link>
|
||||
</div>
|
||||
@ -135,7 +135,7 @@ export class Subs extends Component {
|
||||
<Link to={data.url}>
|
||||
<div className="mw-336 one-line pr3">
|
||||
<span className="body-large green-medium"> • </span>
|
||||
<span className="body-regular-400">Invite to</span>
|
||||
<span className="body-regular-400">Invite to </span>
|
||||
<span className="body-regular">
|
||||
{data.title}
|
||||
</span>
|
||||
@ -179,7 +179,7 @@ export class Subs extends Component {
|
||||
</div>
|
||||
<div className="w-100 flex">
|
||||
<p className="fl gray-50 body-regular-400" style={{flexBasis:336}}>
|
||||
Title
|
||||
<span className="ml3">Title</span>
|
||||
</p>
|
||||
<p className="fl gray-50 body-regular-400" style={{flexBasis:336}}>
|
||||
Host
|
||||
|
@ -17,8 +17,8 @@ export default class PublishTile extends Component {
|
||||
: "Invites"
|
||||
info.push(
|
||||
<p key={1}>
|
||||
<span className="green-medium">{this.props.data.invites} </span>
|
||||
{text}
|
||||
<span className="green-medium">{this.props.data.invites} </span>
|
||||
<span>{text}</span>
|
||||
</p>
|
||||
);
|
||||
}
|
||||
@ -28,8 +28,8 @@ export default class PublishTile extends Component {
|
||||
: "New Posts"
|
||||
info.push(
|
||||
<p key={2}>
|
||||
<span className="green-medium">{this.props.data.new} </span>
|
||||
{text}
|
||||
<span className="green-medium">{this.props.data.new} </span>
|
||||
<span>{text}</span>
|
||||
</p>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user