mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2025-02-20 18:52:27 +00:00
Fix bullet points
This commit is contained in:
parent
950faa4e83
commit
95b930b9ed
2 changed files with 6 additions and 2 deletions
|
@ -272,7 +272,7 @@ const Chatroom = exports.Chatroom = React.createClass({
|
|||
<div>
|
||||
<ul className="chat" id="chatmessages" ref="messageContainer"
|
||||
style={{height: this.props.containerHeight - 170}}>
|
||||
<li className="text-center">
|
||||
<li className="text-center ">
|
||||
<a href="#"
|
||||
onClick={this.loadMoreMessages}
|
||||
className="btn btn-primary btn-xs">
|
||||
|
@ -348,7 +348,7 @@ const ChatMessage = React.createClass({
|
|||
socket={this.props.socket}/>;
|
||||
}
|
||||
return (
|
||||
<li className="left clearfix">
|
||||
<li className="left clearfix chat-message list-unstyled">
|
||||
<span className="chat-img pull-left">
|
||||
<img
|
||||
src={this.props.message.author.avatar}
|
||||
|
|
|
@ -33,6 +33,10 @@ html, body {
|
|||
padding-right: 20px;
|
||||
}
|
||||
|
||||
.chat-message {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
#message-input {
|
||||
border: 1px solid #367fa9 !important;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
|
|
Loading…
Reference in a new issue