Fix: Bloblang playground title hidden behind sticky bar on mobile#396
Fix: Bloblang playground title hidden behind sticky bar on mobile#396JakeSCahill wants to merge 1 commit into
Conversation
On narrow screens the sticky product indicator (.component-indicator-sticky, z-index 50, opaque) overlapped and covered the h1 page title. Keep the indicator in normal flow on the playground at <=1024px so the title renders cleanly below it. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
✅ Deploy Preview for docs-ui ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThis change adds a CSS override in the Bloblang playground stylesheet that switches the sticky component indicator's positioning to static on mobile viewports, preventing it from overlapping the page title on narrow screens. Estimated code review effort: 1 (Trivial) | ~3 minutes Changes
Related issues: None mentioned in provided context. Related PRs: None mentioned in provided context. Suggested labels: css, bugfix, mobile Suggested reviewers: None specified in provided context. 🐰 A sticky note once hid the title from view, 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Warning Tools execution failed with the following error: Failed to run tools: 13 INTERNAL: Received RST_STREAM with code 2 (Internal server error) Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |

Problem
On mobile (≤1024px), the Bloblang playground page title ("Bloblang Playground") is invisible — hidden behind the sticky product indicator (
.component-indicator-sticky), which hasz-index: 50and an opaque background and overlaps the same vertical band as theh1.pagetitle.The title element itself renders fine (white,
visibility: visible,z-index: 1) — it's just painted over by the higher-z, opaque sticky bar.Fix
Keep the product indicator in normal flow (
position: static) on the playground at ≤1024px, so the title sits cleanly below it. Scoped to.bloblang-playground, so it only affects this app-like page — losing sticky-on-scroll for the indicator there is a fine tradeoff.Scope
Pre-existing bug, unrelated to the Ask AI work — one scoped CSS rule in
bloblang-playground.css. Verified on a 390px viewport: title now visible below the indicator, no overlap (sticky 210–262, title 274–303).🤖 Generated with Claude Code