make textarea height increased on focus, fix outlines

This commit is contained in:
ghost 2023-12-08 02:06:20 +02:00
parent 1436f7ecd1
commit 9e3819906c
2 changed files with 8 additions and 2 deletions

2
.env
View File

@ -19,7 +19,7 @@ APP_ENV=dev
APP_SECRET=EDIT_ME
###< symfony/framework-bundle ###
APP_VERSION=1.1.1
APP_VERSION=1.2.0
APP_NAME=KevaChat

View File

@ -71,7 +71,7 @@ main
display: block;
margin: 16px auto 0 auto;
max-width: var(--container-max-width);
padding-bottom: 115px;
padding-bottom: 136px;
}
main > h2
@ -149,6 +149,7 @@ footer > form
margin: 16px auto;
max-width: var(--container-max-width);
overflow: hidden;
padding: 0 4px;
width: 100%;
}
@ -162,6 +163,11 @@ footer > form > textarea
width: 100%;
}
footer > form > textarea:focus
{
min-height: 100px;
}
footer > form > button
{
cursor: pointer;