diff --git a/app/lib/components/Chat/Chat.jsx b/app/lib/components/Chat/Chat.jsx index aa12109..898bf75 100644 --- a/app/lib/components/Chat/Chat.jsx +++ b/app/lib/components/Chat/Chat.jsx @@ -21,7 +21,6 @@ class Chat extends Component return (
-
{ onSendMessage(e, displayName, picture); }} diff --git a/app/lib/components/Chat/MessageList.jsx b/app/lib/components/Chat/MessageList.jsx index 1b43415..3f59d1a 100644 --- a/app/lib/components/Chat/MessageList.jsx +++ b/app/lib/components/Chat/MessageList.jsx @@ -52,7 +52,7 @@ class MessageList extends Component const picture = (message.sender === 'response' ? message.picture : this.props.myPicture) || 'resources/images/avatar-empty.jpeg'; - + return (
diff --git a/app/stylus/components/FileSharing.styl b/app/stylus/components/FileSharing.styl index 5af968d..736ff1b 100644 --- a/app/stylus/components/FileSharing.styl +++ b/app/stylus/components/FileSharing.styl @@ -1,61 +1,61 @@ [data-component='FileSharing'] { - > .sharing-toolbar { - > .share-file { - cursor: pointer; - width: 100%; - background: #252525; - border: 1px solid #151515; - padding: 1rem; - border-bottom: 5px solid #151515; - border-radius: 3px 3px 0 0; - } - } + > .sharing-toolbar { + > .share-file { + cursor: pointer; + width: 100%; + background: #252525; + border: 1px solid #151515; + padding: 1rem; + border-bottom: 5px solid #151515; + border-radius: 3px 3px 0 0; + } + } - > .shared-files { - > .file-entry { - background-color: rgba(0,0,0,0.1); - border-radius: 5px; - width: 100%; - padding: 0.5rem; - display: flex; - margin-top: 0.5rem; - - > .file-avatar { + > .shared-files { + > .file-entry { + background-color: rgba(0,0,0,0.1); + border-radius: 5px; + width: 100%; + padding: 0.5rem; + display: flex; + margin-top: 0.5rem; + + > .file-avatar { height: 2rem; border-radius: 50%; - } + } - > .file-content { - flex-grow: 1; - padding-left: 0.5rem; + > .file-content { + flex-grow: 1; + padding-left: 0.5rem; - > p:not(:first-child) { - margin-top: 0.5rem; - } + > p:not(:first-child) { + margin-top: 0.5rem; + } - > .file-info { - display: flex; - padding-top: 0.5rem; - align-items: center; - - > .button { - display: flex; - justify-content: center; - align-items: center; - cursor: pointer; - background: #252525; - border: 1px solid #151515; - padding: 0.3rem; - border-bottom: 5px solid #151515; - border-radius: 3px 3px 0 0; - } + > .file-info { + display: flex; + padding-top: 0.5rem; + align-items: center; + + > .button { + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + background: #252525; + border: 1px solid #151515; + padding: 0.3rem; + border-bottom: 5px solid #151515; + border-radius: 3px 3px 0 0; + } - > p { - flex-grow: 1; - padding-left: 0.5rem; - } - } - } - } - } + > p { + flex-grow: 1; + padding-left: 0.5rem; + } + } + } + } + } } \ No newline at end of file