From 8b263d3664d0a1e4e6f0efdb9b73a4bc911701fc Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Mon, 26 Jan 2026 13:03:30 +0000 Subject: [PATCH] - Textarea width for Firefox --- Household/Household.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Household/Household.css b/Household/Household.css index 9261eb7c05..5617d97a7a 100644 --- a/Household/Household.css +++ b/Household/Household.css @@ -86,7 +86,9 @@ body { } textarea { - width: stretch !important; +/* Firefox doesnt understand some CSS!*/ +/* width: stretch !important;*/ + width: calc(100% - 20px) !important; outline-color: #c2aec9; background-color: white; }