Improve minimal textarea size.
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful

This commit is contained in:
Madeorsk 2024-09-23 15:31:28 +02:00
parent bd8fd363f8
commit de4018af83
Signed by: Madeorsk
GPG key ID: 677E51CA765BB79F
2 changed files with 7 additions and 1 deletions

View file

@ -1,5 +1,5 @@
{ {
"version": "1.2.3", "version": "1.2.4",
"name": "@kernelui/core", "name": "@kernelui/core",
"description": "Kernel UI Core.", "description": "Kernel UI Core.",
"scripts": { "scripts": {

View file

@ -25,3 +25,9 @@ input, textarea, select
opacity: 1; opacity: 1;
} }
} }
textarea
{
min-height: 2.5em;
resize: vertical;
}