|
|
@@ -45,12 +45,12 @@ export default class DeleteCommentModal extends React.Component {
|
|
|
</ModalHeader>
|
|
|
<ModalBody>
|
|
|
<UserPicture user={comment.creator} size="xs" /> <strong><Username user={comment.creator}></Username></strong> wrote on {commentDate}:
|
|
|
- <p className="well well-sm comment-body mt-2">{commentBody}</p>
|
|
|
+ <p className="card well comment-body mt-2 p-2">{commentBody}</p>
|
|
|
</ModalBody>
|
|
|
<ModalFooter>
|
|
|
<span className="text-danger">{this.props.errorMessage}</span>
|
|
|
- <Button onClick={this.props.cancel} bsClass="btn btn-sm">Cancel</Button>
|
|
|
- <Button onClick={this.props.confirmedToDelete} bsClass="btn btn-sm btn-danger">
|
|
|
+ <Button onClick={this.props.cancel}>Cancel</Button>
|
|
|
+ <Button color="danger" onClick={this.props.confirmedToDelete}>
|
|
|
<i className="icon icon-fire"></i>
|
|
|
Delete
|
|
|
</Button>
|