Fix message list positioning

This commit is contained in:
Charles Gould 2017-01-05 23:16:23 -05:00
parent 94130fd141
commit c24426ce09
2 changed files with 5 additions and 3 deletions

View File

@ -95,6 +95,10 @@ h1 {
color: green; color: green;
} }
#messageList {
bottom: 50px;
}
#messageInput { #messageInput {
width: 100%; width: 100%;
height: 42px; height: 42px;

View File

@ -64,9 +64,7 @@
</div> </div>
<div class="right col"> <div class="right col">
<div class="header row">Chat</div> <div class="header row">Chat</div>
<div class="body row scroll-y"> <div id="messageList" class="body row scroll-y"></div>
<div id="messageList"></div>
</div>
<div class="footer row"> <div class="footer row">
<input id="messageInput" placeholder="Chat here..." /> <input id="messageInput" placeholder="Chat here..." />
</div> </div>