@import 'rootvars'; @import 'applets'; @import 'base'; @import 'button-pad'; @import 'dashboard'; @import 'gameboard'; @import 'palette-picker'; @import 'room'; @import 'card-deck'; @import 'sky'; @import 'tray'; @import 'billboard'; @import 'note'; @import 'tooltips'; @import 'game-kit'; @import 'bud'; @import 'wallet-tokens'; input, textarea, select, [contenteditable] { user-select: text; touch-action: auto; // iOS Safari auto-zooms when focusing a form field whose computed font-size // is < 16px. At rem=14 (small portrait viewports w. clamp(14,2.4vmin,22)) // a 1rem input is 14px → triggers zoom. `max(16px, 1em)` enforces the 16px // floor while still inheriting larger sizes from parent contexts when set. // unquote() keeps Sass from trying to evaluate the px/em compare at compile // time (it can't reconcile units); CSS max() handles it natively at runtime. font-size: unquote("max(16px, 1em)"); }