Conversation
The nav-container height was not accounting for the announcement bar height, causing the container to extend beyond the viewport and hiding the collapse button at the bottom. Updated the height calculation to subtract the announcement bar height on desktop viewports. Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
The "Choose an example..." option was appearing in the dropdown list because it was defined as an HTML option. Removed the HTML placeholder option and updated Choices.js configuration to use "Choose an example..." as the placeholderValue. This ensures the placeholder text displays correctly but doesn't appear in the dropdown list itself. Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
✅ Deploy Preview for docs-ui ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Important Review skippedAuto incremental reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the
📝 WalkthroughWalkthroughThe pull request makes two independent UI adjustments. First, the desktop navigation container's height and top positioning calculations in the CSS are updated to account for the announcement bar height using CSS variables. Second, the Bloblang playground example dropdown is refactored by removing an empty option element and updating the Choices.js placeholder text from "Select an example" to "Choose an example...". Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Possibly related PRs
Suggested reviewers
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. 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 |

This pull request makes minor improvements to the Bloblang Playground UI, focusing on consistency in dropdown placeholder text and a small layout adjustment for the navigation panel.
UI/UX consistency:
<option value="">Choose an example...</option>from the dropdown since the placeholder now serves this purpose.Layout adjustment:
nav.cssto account for the announcement bar, ensuring proper layout when the announcement bar is present.