Try fixing textareas resizing on character editor

This commit is contained in:
Cohee 2023-08-25 20:28:23 +03:00
parent 12f1cdb3fd
commit f50db430eb

View File

@ -916,12 +916,22 @@ select {
white-space: nowrap;
}
@media screen and (max-width: 1000px) {
#form_create textarea {
flex-grow: 1;
}
}
@media screen and (min-width: 1001px) {
#description_textarea {
height: 33vh;
height: 33svh;
}
#description_textarea,
#firstmessage_textarea {
height: -webkit-fill-available;
width: -moz-available;
#firstmessage_textarea {
resize: none;
flex: 1;
}
}
#character_name_pole {
@ -1550,10 +1560,6 @@ input[type=search]:focus::-webkit-search-cancel-button {
overflow-y: auto;
}
#form_create textarea {
flex-grow: 1;
}
.avatar_div {
display: flex;
width: 100%;
@ -3520,4 +3526,4 @@ a {
z-index: 10;
margin-left: 10px;
/* Give some space between the button and search box */
}
}