Finally fixed input

This commit is contained in:
Hansi Xu
2022-03-06 18:15:21 -05:00
parent 7e17e1c9e9
commit 0a1323da8a
3 changed files with 92 additions and 28 deletions

View File

@@ -1,3 +1,5 @@
/* Please direct questions to Hansi Xu (Wallace LaWall on Discord) */
.chatcomponent > * {
display: inline-block;
}
@@ -29,8 +31,12 @@
text-align: center;
}
.messagelist {
height: 500px;
height: 400px;
width: 800px;
top: 0px;
left: 200px;
position: absolute;
background-color: rgb(80, 80, 80);
overflow-x: hidden;
overflow-y: scroll;
@@ -85,4 +91,18 @@
width: 800px;
height: auto;
float: left;
}
.chatinput {
background-color: rgb(75, 75, 75);
top: 400px;
left: 200px;
position: absolute;
height: 92px;
width: 793px;
color: antiquewhite;
border-width: 2px;
border-color: rgb(48, 45, 45);
}