mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-03 05:29:12 +00:00
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:
@@ -373,11 +373,6 @@
|
||||
margin: revert;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style: revert;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
body {
|
||||
@apply bg-background text-foreground;
|
||||
}
|
||||
|
||||
@@ -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}
|
||||
/>
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user