Added sorting to msgs sub and added some styling for messaging items. BOD-309 BOD-310

This commit is contained in:
Patrick Fic
2020-08-28 12:53:19 -07:00
parent fbde4ddc2a
commit 364cf6c7bb
20 changed files with 165 additions and 134 deletions

View File

@@ -33,7 +33,7 @@ export function ChatPopupComponent({
style={{ position: "absolute", right: ".5rem", top: ".5rem" }}
/>
<Row className="chat-popup-content">
<Row gutter={[8, 8]} className="chat-popup-content">
<Col span={8}>
<ChatConversationListComponent conversationList={conversationList} />
</Col>

View File

@@ -6,8 +6,12 @@
}
.chat-popup-content {
//height: 50vh;
min-height: 0px; /* IMPORTANT: you need this for non-chrome browsers */
flex: 1;
//height: 100%;
.ant-col {
height: 100%;
}
}
@media only screen and (min-width: 992px) {