From 264c6954e98cb1ae9af98679f8796c05cd6888ac Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Wed, 7 Feb 2024 22:53:36 -0800 Subject: [PATCH] Updated menu style. --- src/components/layout/SideNav.module.css | 2 ++ src/tracker/index.d.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/layout/SideNav.module.css b/src/components/layout/SideNav.module.css index 5dbe4105..be80506a 100644 --- a/src/components/layout/SideNav.module.css +++ b/src/components/layout/SideNav.module.css @@ -1,6 +1,7 @@ .menu { display: flex; flex-direction: column; + gap: 2px; } .item a { @@ -16,4 +17,5 @@ .selected { font-weight: 700; + background: var(--base75); } diff --git a/src/tracker/index.d.ts b/src/tracker/index.d.ts index f9bd4b24..05497da2 100644 --- a/src/tracker/index.d.ts +++ b/src/tracker/index.d.ts @@ -138,7 +138,7 @@ export type UmamiTracker = { /** * Tracks an event with fully customizable dynamic data - * Ilf you don't specify any `name` and/or `data`, it will be treated as a page view + * If you don't specify any `name` and/or `data`, it will be treated as a page view * * @example ``` * umami.track((props) => ({ ...props, url: path }));