Skip to content

Commit cd4ecc7

Browse files
fix(nav): make sure nav is on top of the content (#72)
1 parent 4a55ac5 commit cd4ecc7

File tree

1 file changed

+1
-1
lines changed
  • packages/components/react/src

1 file changed

+1
-1
lines changed

packages/components/react/src/Nav.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function Nav({ lesson: currentLesson, navList }: Props) {
4040
data-state={`${showDropdown ? 'open' : 'closed'}`}
4141
className={classNames(
4242
navStyles.NavContainer,
43-
'absolute z-1 left-0 transition-[background,box-shadow] duration-0 right-0 rounded-[8px] border overflow-hidden',
43+
'absolute z-1 left-0 transition-[background,box-shadow] duration-0 right-0 rounded-[8px] border overflow-hidden z-50',
4444
)}
4545
ref={menuRef}
4646
>

0 commit comments

Comments
 (0)