Skip to content

Commit

Permalink
added fixed height by deafault
Browse files Browse the repository at this point in the history
  • Loading branch information
slipnir committed Jul 19, 2018
1 parent 4a62e93 commit 64d3c8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions static/css/chat.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ textarea {
font-size: 20px;
font-family: 'Ubuntu Mono', monospace;
}
.wrapper {
padding-bottom: 200px;
}
.wrapper .header {
display: flex;
justify-content: center;
Expand All @@ -34,9 +31,11 @@ textarea {
.wrapper .main {
max-width: 900px;
margin: 0 auto;
padding-bottom: 20px;
}
.wrapper .main .chat_content {
background-color: #ffffff;
min-height: 70vh;
}
.wrapper .main .message_input {
display: flex;
Expand Down
3 changes: 2 additions & 1 deletion static/css/chat.less
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ textarea {
font-family: @fontFamily;
}
.wrapper {
padding-bottom: 200px;
.header {
display: flex;
justify-content: center;
Expand All @@ -40,8 +39,10 @@ textarea {
.main {
max-width: 900px;
margin: 0 auto;
padding-bottom: 20px;
.chat_content {
background-color: #ffffff;
min-height: 70vh;
}
.message_input {
display: flex;
Expand Down

1 comment on commit 64d3c8f

@slipnir
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

default* )

Please sign in to comment.