fix(theme-classic): fixed wrong cursor on dropdown menu in navbar, when window is small (#9398)

This commit is contained in:
Shreesh Nautiyal 2023-11-16 03:59:12 +05:30 committed by GitHub
parent cf08ec9790
commit 6f70b27694
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View file

@ -19,6 +19,7 @@ import type {
DesktopOrMobileNavBarItemProps,
Props,
} from '@theme/NavbarItem/DropdownNavbarItem';
import styles from './styles.module.css';
function isItemActive(
item: LinkLikeNavbarItemProps,
@ -143,6 +144,7 @@ function DropdownNavbarItemMobile({
<NavbarNavLink
role="button"
className={clsx(
styles.dropdownNavbarItemMobile,
'menu__link menu__link--sublist menu__link--sublist-caret',
className,
)}

View file

@ -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;
}