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:
5
.changeset/prevent-mobile-zoom-inputs.md
Normal file
5
.changeset/prevent-mobile-zoom-inputs.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@dustinbyrne/kb": patch
|
||||
---
|
||||
|
||||
Prevent mobile browser zoom on quick task entry inputs by setting font-size to 16px on mobile viewports for all task input fields (quick entry, inline create, and card edit inputs).
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user