Remove bullet styling only from sidebar items on web app

Previous fix had removed bullet styling from all components in web
app. This made chat messages on the web app lose bullet styling too.
This commit is contained in:
Debanjum
2025-01-06 13:41:59 +07:00
parent dc0bc5bcca
commit 9a5e3583cf
2 changed files with 1 additions and 6 deletions

View File

@@ -373,11 +373,6 @@
margin: revert;
}
li {
list-style: revert;
list-style-type: none;
}
body {
@apply bg-background text-foreground;
}

View File

@@ -485,7 +485,7 @@ const SidebarMenuItem = React.forwardRef<HTMLLIElement, React.ComponentProps<"li
<li
ref={ref}
data-sidebar="menu-item"
className={cn("group/menu-item relative", className)}
className={cn("group/menu-item relative list-none", className)}
{...props}
/>
),