Prevent textarea overflow

This commit is contained in:
Florine W. Dekker 2022-11-24 14:12:46 +01:00
parent ecaa088e43
commit 930cdb278b
Signed by: FWDekker
GPG Key ID: D3DCFAA8A4560BE0
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "converter",
"version": "1.5.1",
"version": "1.5.2",
"description": "Convert numbers to and from various bases.",
"author": "Florine W. Dekker",
"browser": "dist/bundle.js",

View File

@ -16,6 +16,7 @@
#inputs textarea {
display: block;
max-width: 100%;
width: 25em;
height: 100%;
}