Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
| 2026-08-18 | claude/services-navigation-removal-7bnknn | ba279bdd0b2fdc5d4dfa2c88dd30d57ee94be330 | src/components/services/services-navigator-page.tsx (referral progress stepper phone centering) | PR #2103 opened — verify:pr-local complete (7091 tests, build, lint, typecheck, RAG fixtures, medication checks all passed) | verify:pr-local |
2 changes: 1 addition & 1 deletion src/components/services/services-navigator-page.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -288,7 +288,7 @@ function ServiceReferralProgress({ active }: { active: ReferralStageId }) {

return (
<nav aria-label="Referral progress" className="min-w-0">
<ol className="flex min-w-0 flex-wrap items-center gap-x-2 gap-y-1">
<ol className="flex min-w-0 flex-wrap items-center justify-center gap-x-2 gap-y-1 sm:justify-start">
{referralStages.map((stage, index) => {
const isActive = index === activeIndex;
const isComplete = index < activeIndex;
Expand Down
Loading