Skip to content

Commit

Permalink
fix(theme-classic): fixed wrong cursor on dropdown menu in navbar, wh…
Browse files Browse the repository at this point in the history
…en window is small (#9398)
  • Loading branch information
Shreesh09 authored and slorber committed Nov 30, 2023
1 parent 1700a29 commit 4eb4693
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import type {
DesktopOrMobileNavBarItemProps,
Props,
} from '@theme/NavbarItem/DropdownNavbarItem';
import styles from './styles.module.css';

function isItemActive(
item: LinkLikeNavbarItemProps,
Expand Down Expand Up @@ -143,6 +144,7 @@ function DropdownNavbarItemMobile({
<NavbarNavLink
role="button"
className={clsx(
styles.dropdownNavbarItemMobile,
'menu__link menu__link--sublist menu__link--sublist-caret',
className,
)}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

.dropdownNavbarItemMobile {
cursor: pointer;
}

0 comments on commit 4eb4693

Please sign in to comment.