diff --git a/packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx b/packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx
index 9a570fecc023c42ebe168cd5c50ab8038fcf84ac..f80218f6bfaf2a5473d82c3dd4644d67a8c81454 100644
--- a/packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx
+++ b/packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx
@@ -342,7 +342,11 @@ const ChildTransactionEdit = forwardRef(
               value={amountToInteger(transaction.amount)}
               zeroSign={amountSign}
               style={{ marginRight: 8 }}
-              inputStyle={{ ...styles.smallText, textAlign: 'right' }}
+              inputStyle={{
+                ...styles.smallText,
+                textAlign: 'right',
+                minWidth: 0,
+              }}
               onFocus={() =>
                 onRequestActiveEdit(getFieldName(transaction.id, 'amount'))
               }
diff --git a/upcoming-release-notes/3168.md b/upcoming-release-notes/3168.md
new file mode 100644
index 0000000000000000000000000000000000000000..7231db8a9b84defd61a9f276fcccfcf50863245f
--- /dev/null
+++ b/upcoming-release-notes/3168.md
@@ -0,0 +1,6 @@
+---
+category: Bugfix
+authors: [wnklmnn]
+---
+
+Fix inputfields overflowing while adding split transactions