Replace border with outline
This commit is contained in:
parent
84f7b6951f
commit
bb55c1460b
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class Post extends React.Component {
|
|||
return comments.map(comment => {
|
||||
return (
|
||||
<div key={comment.id}>
|
||||
<div className="item" style={{border: '1px solid', borderColor: '#DADADA', borderRadius: '5px'}}>
|
||||
<div className="item" style={{outlineOffset: 2, outline: '1px solid', outlineColor: '#DADADA'}}>
|
||||
<h5><b>Comment by <Link to={"/users/"+ comment.author}>{comment.author}</Link></b><br></br>
|
||||
Posted: {comment.time_published}
|
||||
</h5>
|
||||
|
|
Reference in a new issue