Conversation
Notice that the single link pages had extra height on all of them which caused scrolling so this fixes that.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
📝 WalkthroughWalkthroughCSS-level adjustments across three files refine layout sizing and stacking. Height calculations shift from static viewport-based values to dynamic calculations using CSS variables and dvh units. Additional responsive classes and z-index properties are applied for improved layout behavior. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 3 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
🧪 Generate unit tests (beta)
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 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@apps/web/app/app.dub.co/`(dashboard)/[slug]/links/[...link]/page-client.tsx:
- Line 142: The inline className on the div contains a malformed CSS calc with
an extra closing parenthesis; in the JSX element where className="flex
min-h-[calc(100dvh-var(--page-top-margin)-var(--page-bottom-margin)-1px))] ..."
(the div in page-client.tsx), remove the surplus trailing ')' so the min-h
utility becomes
min-h-[calc(100dvh-var(--page-top-margin)-var(--page-bottom-margin)-1px)] (or
add spaces for readability like calc(100dvh - var(--page-top-margin) -
var(--page-bottom-margin) - 1px)) ensuring balanced parentheses.
Noticed that the single link pages had extra height on all of them which caused scrolling so this fixes that.
CleanShot.2026-02-12.at.15.48.48.mp4
Summary by CodeRabbit