fix: prevent onboarding tour tooltip from cutting off at step 4
Increased estimated tooltip height from 200px to 300px so the viewport clamping function correctly positions the tooltip, keeping the Next button visible on all steps. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
911881054a
commit
d2101ef1cf
|
|
@ -80,7 +80,7 @@ export function TourTooltip({
|
|||
isLastStep
|
||||
}: TourTooltipProps) {
|
||||
const tooltipWidth = 320
|
||||
const tooltipHeight = 200 // Approximate, will auto-size
|
||||
const tooltipHeight = 300 // Approximate height to ensure buttons stay visible
|
||||
const highlightPadding = step.highlightPadding || 8
|
||||
const gap = 12
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue