fix: prevent iOS auto-zoom on form inputs#94
Conversation
- Remove text-sm (14px) from TagSelector, SystemSelector, and SimpleSystemSelect inputs so they inherit the 16px browser default - Add defensive font-size: 16px baseline in @layer base to guard future inputs against the same regression
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 6 minutes and 28 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (4)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
text-sm(14px) from the search inputs inTagSelectorandSystemSelectorand the<select>inSimpleSystemSelect— these were triggering iOS Safari/WebView auto-zoom on focus.font-size: 16pxbaseline forinput,textarea, andselectin@layer baseofindex.cssto guard future inputs from the same regression.iOS auto-zooms any form control with a computed font-size below 16px. All
wui/TextInputusages were already safe (no explicit size class, inherit 16px); the three components above were the only at-risk elements.