From 6c4b6ef1b37ac844d6cbd5f683f7bb2a2412bd14 Mon Sep 17 00:00:00 2001 From: Wirlaburla Date: Tue, 12 Mar 2024 12:10:03 -0500 Subject: [PATCH] move box-sizing to both textarea AND input --- core/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/style.css b/core/style.css index 7d0ba05..e563d2d 100644 --- a/core/style.css +++ b/core/style.css @@ -50,6 +50,9 @@ table { textarea { resize: vertical; width: 100%; +} + +textarea, input { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;