mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-07-02 02:56:00 -04:00
trim some unnecessary dependencies
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
.link {
|
||||
display: inline-block;
|
||||
padding: 0.6em;
|
||||
color: var(--colors-medium-dark) !important;
|
||||
padding: 0.6em !important;
|
||||
}
|
||||
|
||||
/* indicate active page/section */
|
||||
|
||||
@@ -27,10 +27,9 @@ const MenuItem = ({ text, href, icon, current, className, ...rest }: MenuItemPro
|
||||
return (
|
||||
<Link
|
||||
href={href}
|
||||
className={clsx(styles.link, current && styles.current, className)}
|
||||
title={text}
|
||||
plain
|
||||
aria-label={text}
|
||||
plain
|
||||
className={clsx(styles.link, current && styles.current, className)}
|
||||
{...rest}
|
||||
>
|
||||
{item}
|
||||
|
||||
Reference in New Issue
Block a user