adjust padding on sidebar items

This commit is contained in:
jeffvli
2025-12-14 05:12:24 -08:00
parent e56d885007
commit a9476a98b1
2 changed files with 3 additions and 1 deletions
@@ -10,6 +10,8 @@
}
.root {
padding-right: var(--theme-spacing-md);
padding-left: var(--theme-spacing-md);
cursor: default;
}
@@ -118,7 +118,7 @@ export const Sidebar = () => {
{sidebarItemsWithRoute.map((item) => {
return (
<SidebarItem key={`sidebar-${item.route}`} to={item.route}>
<Group gap="sm">
<Group gap="md">
<SidebarIcon route={item.route} />
{item.label}
</Group>