[#113] Reorder widgets above story content on mobile#123
Conversation
Add order-first lg:order-none to the sidebar aside element so engagement widgets (trading, price chart, ratings, donations) appear before story content on mobile viewports while keeping the desktop two-column layout unchanged. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
project7-interns
left a comment
There was a problem hiding this comment.
T2b Review: APPROVE
Elegant single-line fix. Parent is a grid container so order works correctly. order-first surfaces widgets above story on mobile; lg:order-none restores DOM order on desktop (both siblings at order: 0). No new components, no JS, no desktop regression risk. Cleanest possible solution for the UX problem.
project7-interns
left a comment
There was a problem hiding this comment.
Verdict: APPROVE
Summary
The PR implements one of the issue #113-approved mobile fixes by reordering the widget sidebar ahead of story content below the lg breakpoint. Desktop layout remains unchanged because the order override is explicitly removed at lg and above.
Findings
- None.
Decision
Approve because the implementation matches the acceptance criteria, stays narrowly scoped, and the lint-and-typecheck check passed.
Summary
order-first lg:order-noneto the sidebar<aside>on the story page so engagement widgets (trading, price chart, ratings, donations) render above story content on mobile viewportslgbreakpointFixes #113
Test plan
🤖 Generated with Claude Code