fixed overflow

This commit is contained in:
supertiger 2019-03-11 20:53:30 +00:00
parent c371d31143
commit 90a2945f07
2 changed files with 4 additions and 1 deletions

View file

@ -212,6 +212,7 @@ export default {
margin-left: 0;
margin-right: 0;
transition: 1s;
overflow: hidden;
}
.image-content {

View file

@ -128,7 +128,7 @@ export default {
this.postTimerID = null;
this.messageLength = 0;
const msg = shortcodeToEmoji(this.message);;
const msg = shortcodeToEmoji(this.message);
const tempID = this.generateNum(25);
@ -380,10 +380,12 @@ export default {
.right-panel {
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0.507);
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden;
}
.message-logs {
overflow: auto;