This commit is contained in:
NikolajDanger
2022-05-31 12:56:05 +02:00
parent de1fb39833
commit f5ac1a6c15
6 changed files with 95 additions and 19 deletions

View File

@ -33,15 +33,26 @@ h1, h2, h3, h4, h5, h6 {
.thread {
border-radius: 20px !important;
height: 80vh;
padding: 0 !important;
}
.thread h1 {
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
}
.messages {
display: flex;
flex-direction: column;
margin-top: auto;
height: 60vh;
height: 61vh;
overflow: scroll;
padding-right: 5px;
padding-left: 20px;
padding-right: 20px;
border-top: 3px black solid;
border-bottom: 3px black solid;
}
.message-container {
@ -68,6 +79,40 @@ h1, h2, h3, h4, h5, h6 {
margin-bottom: 0px !important;
}
.new-message form {
width: 100%;
display: flex;
padding: 10px;
padding-right: 20px;
padding-left: 20px;
}
.new-message form .message-box {
height: auto;
font-size: large;
display: flex;
flex-grow: 3;
margin-right: 10px;
border-radius: 10px;
border: 2px black solid;
padding: 3px;
padding-left: 10px;
padding-right: 10px;
}
.new-message form .send:hover {
background-color: rgb(84 158 199);
border: 2px rgb(22 97 148) solid;
}
.new-message form .send {
color: #fff;
background-color: rgb(22 97 148);
border-radius: 10px;
border: 2px black solid;
cursor: pointer;
}
.message-container .timestamp {
align-self: flex-start;
margin-right: 5px;