This commit is contained in:
tangly1024
2023-03-23 22:58:33 +08:00
parent 0b4b33907b
commit 7d63762b62
6 changed files with 10 additions and 10 deletions

View File

@@ -38,7 +38,7 @@ export const MenuItemDrop = ({ link }) => {
{link.subMenus.map(sLink => {
return <li key={sLink.id} className='not:last-child:border-b-0 border-b text-gray-700 dark:text-gray-200 hover:bg-gray-50 dark:hover:bg-gray-900 tracking-widest transition-all duration-200 dark:border-gray-800 py-3 pr-6 pl-2'>
<Link href={sLink.to}>
<span className='text-xs font-extralight'>{sLink.title}</span>
<span className='text-xs font-extralight'>{link?.icon && <i className={sLink?.icon} > &nbsp; </i>}{sLink.title}</span>
</Link>
</li>
})}