feat(KB-189): prevent mobile zoom on all quick entry inputs

- Extend mobile font size fix from textarea to all quick entry inputs (input, select)

- Update CSS selector to cover all quick entry form elements

- Add changeset for mobile zoom fix
This commit is contained in:
gsxdsm
2026-03-30 15:55:36 -07:00
parent 23692e1fa3
commit 533571d82e
2 changed files with 9 additions and 1 deletions

View File

@@ -2431,7 +2431,10 @@ body {
/* Mobile task-entry font sizing: prevent Safari zoom-on-focus by ensuring
task entry inputs are at least 16px on mobile viewports */
.quick-entry-input,
#new-task-description {
#new-task-description,
.inline-create-input,
.card-edit-title-input,
.card-edit-desc-textarea {
font-size: 16px;
}