added css to inline menu

This commit is contained in:
toando-netexperience
2021-11-04 16:28:24 -04:00
parent a2b999e631
commit d6e16dd743
2 changed files with 13 additions and 0 deletions

View File

@@ -58,6 +58,7 @@ const Navbar = ({
mode="inline"
menuItems={mobileMenuItems || menuItems}
onMenuItemClick={onMenuItemClick}
className={styles.InlineMenu}
/>
</Drawer>
) : (

View File

@@ -76,3 +76,15 @@
font-size: 20px;
color: #707070;
}
.InlineMenu {
ul {
background: inherit !important
}
:global(.ant-menu-item-selected) {
span {
color: inherit
}
}
}