From 757374cda34aba68b9c045fad4b8f3a7504e3faa Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Sat, 19 Jul 2025 23:29:02 +0200 Subject: [PATCH 1/4] fix: TextInput cannot shrink after resize in Safari --- src/components/TextInput/TextInput.scss | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/TextInput/TextInput.scss b/src/components/TextInput/TextInput.scss index 825c3cfaf7..bc9ff55e29 100644 --- a/src/components/TextInput/TextInput.scss +++ b/src/components/TextInput/TextInput.scss @@ -14,8 +14,6 @@ background: $inputBackgroundColor; font-size: 16px; width: 100%; - min-width: 100%; - min-height: 100%; padding: 6px; vertical-align: top; resize: both; From 67f9872887ceb5e4224429f3ee6180d2e7dc3c70 Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Sat, 19 Jul 2025 23:45:46 +0200 Subject: [PATCH 2/4] fix: text input can shrink below modal width --- src/components/Field/Field.react.js | 6 ++++-- src/components/TextInput/TextInput.scss | 3 +++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/components/Field/Field.react.js b/src/components/Field/Field.react.js index d768d0489e..11610daba9 100644 --- a/src/components/Field/Field.react.js +++ b/src/components/Field/Field.react.js @@ -22,12 +22,14 @@ const Field = ({ label, input, labelWidth = 50, labelPadding, height, className }); } return ( -