From 6ae037f97c601de84216ffdffb662f1d0456948e Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sun, 26 Jul 2026 04:57:00 -0700 Subject: [PATCH] Studio: use the scaling text tokens in the Agents settings tab (#7468) The Agents tab added in #7303 sets its avatar initial and its two status pills with raw px utilities (text-[11px], text-[10px]). Those ignore the UI font size preference, so the text stays fixed while the rest of Settings scales, and tests/studio/test_ui_font_scale_contract.py fails on main. Swapped for the existing tokens in index.css, which are the same sizes multiplied by --ui-font-scale: text-ui-11 and text-ui-10. Co-authored-by: danielhanchen