Skip to content
This repository has been archived by the owner on Jul 15, 2019. It is now read-only.

Commit

Permalink
fix(Layout): use flex to lay out chat column instead of fixed calc
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-arn committed May 20, 2019
1 parent 5540468 commit 2fdc0a5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ div {
}

.chat-column {
height: 93%;
display: flex;
flex-direction: column;
height: 90%;
padding: 0.9375rem 0 0.625rem 0;
margin: auto;
text-align: left;
Expand All @@ -78,10 +80,10 @@ div {
}

#scrollingChat {
flex: 1;
margin: 0.75rem;
overflow-y: auto;
overflow-x: hidden;
height: calc(100% - 10rem);
}

.message-inner {
Expand Down

0 comments on commit 2fdc0a5

Please sign in to comment.