mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-06-14 20:11:10 +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-right: 0;
|
||||
transition: 1s;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.image-content {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue