Skip to content

Commit

Permalink
[style]: update style
Browse files Browse the repository at this point in the history
  • Loading branch information
pizn committed Jan 21, 2016
1 parent 4e2d345 commit a5e91b6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/components/Desktop/Aside.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class Aside extends Component {
</Row>
}
<Row className="foot-copyright">
<p>Write with <span className="love">Love</span> in Eevee.</p>
<p>Write with <span className="love">Love</span> in <a href="https://github.com/pizn/eevee" target="_blank">Eevee</a>.</p>
</Row>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Post/Editor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class Editor extends Component {
}
</div>
<div className="leaf-editor-footer clearfix">
<p>Write with <span className="love">Love</span> in <a href="https://github.com/pizn/eevee" target="_blank">Eevee</a> :)</p>
<p>Write with <span className="love">Love</span> in <a href="https://github.com/pizn/eevee" target="_blank">Eevee</a>.</p>
</div>
</div>
</div>
Expand Down
12 changes: 6 additions & 6 deletions src/components/Post/Head.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +51,20 @@ class Head extends Component {
<div className="meta-card">
{ meta.description &&
<Row className="meta-card-item">
<Col span="4" className="name">Description:</Col>
<Col span="20" className="cnt">{meta.description}</Col>
<Col span="6" className="name">Description:</Col>
<Col span="18" className="cnt">{meta.description}</Col>
</Row>
}
{ meta.categories &&
<Row className="meta-card-item">
<Col span="4" className="name">Categories:</Col>
<Col span="20" className="cnt">{meta.categories}</Col>
<Col span="6" className="name">Categories:</Col>
<Col span="18" className="cnt">{meta.categories}</Col>
</Row>
}
{ meta.tags &&
<Row className="meta-card-item">
<Col span="4" className="name">Tags:</Col>
<Col span="20" className="cnt">{meta.tags}</Col>
<Col span="6" className="name">Tags:</Col>
<Col span="18" className="cnt">{meta.tags}</Col>
</Row>
}
<a onClick={this.handleEditMeta.bind(this)} className="meta-card-edit">
Expand Down

0 comments on commit a5e91b6

Please sign in to comment.