Added Friend list in chat.

This commit is contained in:
Marijn Jansen
2017-01-11 14:38:07 +01:00
parent 916589dac7
commit 38079cbcaf
2 changed files with 10 additions and 2 deletions

View File

@@ -19,12 +19,16 @@
background-color: white; background-color: white;
} }
/* List of chats. */ /* List of chats. */
.chat-list { .chat-list {
height: 600px; height: 600px;
overflow-y: auto; overflow-y: auto;
padding: 10px; padding: 10px;
text-align: left;
}
.chat-conversation {
margin: 5px;
} }
.chat-right { .chat-right {

View File

@@ -2,7 +2,11 @@
<div class="chat"> <div class="chat">
<div class="chat-left"> <div class="chat-left">
<div class="chat-list"> <div class="chat-list">
Friends? <h5>Chats</h5>
<a href="#"><div class="chat-conversation">
<img class="profile-picture" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTDnuRSeeyPve7KwDvJJ6OBzj3gyghwLcE2z9kZeYBOyZavh3mw">
Rudolf Leslo
</div></a>
</div> </div>
</div> </div>