Make message box wider and unresizeable

This commit is contained in:
Katroku 2022-05-01 17:21:40 +03:00
parent df671895ec
commit 4d0e2a8594
2 changed files with 3 additions and 2 deletions

View File

@ -34,6 +34,7 @@ textarea {
width: auto; width: auto;
height: auto; height: auto;
cursor: pointer; cursor: pointer;
resize: none;
} }
p { p {

View File

@ -71,7 +71,7 @@
<form action="/message" method="POST"> <form action="/message" method="POST">
<textarea rows="4" cols="50" name="content"></textarea> <textarea rows="4" cols="133" name="content"></textarea>
<input name="threadID" type="hidden" value="<%= thread.id %>"></input> <input name="threadID" type="hidden" value="<%= thread.id %>"></input>
<br> <br>
@ -87,4 +87,4 @@
<%- include("extra/footer") %> <%- include("extra/footer") %>
</body> </body>
</html> </html>