From 8932ed4e3c2c6980a91380ded8c8b7b1bd635e1a Mon Sep 17 00:00:00 2001 From: UdayRajSahai2 Date: Thu, 19 Feb 2026 12:40:09 +0530 Subject: [PATCH] Fixed tour guide going out of the screen --- components/Tour/TourGuide.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/Tour/TourGuide.tsx b/components/Tour/TourGuide.tsx index 6728f7f4..428c801f 100644 --- a/components/Tour/TourGuide.tsx +++ b/components/Tour/TourGuide.tsx @@ -83,6 +83,8 @@ export function TourGuide() { borderRadius: 'var(--border-radius-md, 8px)', padding: isMobile ? 16 : 20, boxShadow: '0 8px 24px rgba(0, 0, 0, 0.15)', + maxHeight: '100vh', + overflowY: 'auto', }, tooltipContainer: { textAlign: 'left',