From 15aa629972c4bd9fd3ab5ddb442783483f57a61f Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 28 Feb 2026 21:31:25 +0000 Subject: Add AGENTS.md and fix star button tap targets on mobile Add AGENTS.md with TDD workflow and check-in guidance for agents. Fix star buttons being nearly impossible to tap on mobile by: - Adding min-width/min-height of 44px for proper touch targets - Adding flex-shrink: 0 so the button isn't squeezed by long titles - Overriding generic button styles (height, text-transform, font-weight) that bled into the star button https://claude.ai/code/session_012CNdRhGhU3hxjrwvZt2BHZ --- frontend-vanilla/src/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'frontend-vanilla') diff --git a/frontend-vanilla/src/style.css b/frontend-vanilla/src/style.css index 47b2de2..757d213 100644 --- a/frontend-vanilla/src/style.css +++ b/frontend-vanilla/src/style.css @@ -490,6 +490,15 @@ select:focus { vertical-align: middle; transition: color 0.2s; line-height: 1; + flex-shrink: 0; + min-width: 44px; + min-height: 44px; + display: flex; + align-items: center; + justify-content: center; + height: auto; + text-transform: none; + font-weight: normal; } .star-btn.is-starred { -- cgit v1.2.3