mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-07-05 19:10:52 +00:00
fixed overflow
This commit is contained in:
parent
c371d31143
commit
90a2945f07
2 changed files with 4 additions and 1 deletions
|
|
@ -212,6 +212,7 @@ export default {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
transition: 1s;
|
transition: 1s;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image-content {
|
.image-content {
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,7 @@ export default {
|
||||||
this.postTimerID = null;
|
this.postTimerID = null;
|
||||||
this.messageLength = 0;
|
this.messageLength = 0;
|
||||||
|
|
||||||
const msg = shortcodeToEmoji(this.message);;
|
const msg = shortcodeToEmoji(this.message);
|
||||||
const tempID = this.generateNum(25);
|
const tempID = this.generateNum(25);
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -380,10 +380,12 @@ export default {
|
||||||
|
|
||||||
.right-panel {
|
.right-panel {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
background-color: rgba(0, 0, 0, 0.507);
|
background-color: rgba(0, 0, 0, 0.507);
|
||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.message-logs {
|
.message-logs {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue