1
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:
2025-04-07 12:11:04 -04:00
parent 80793c7330
commit 53d6f57699
19 changed files with 256 additions and 300 deletions
+1 -1
View File
@@ -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 */
+2 -3
View File
@@ -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}