lecom-ui 2.3.5 → 2.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -295,7 +295,7 @@ const SidebarGroup = React.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
295
295
|
{
|
|
296
296
|
ref,
|
|
297
297
|
"data-sidebar": "group",
|
|
298
|
-
className: cn("relative flex w-full min-w-0 flex-col
|
|
298
|
+
className: cn("relative flex w-full min-w-0 flex-col py-4 px-3", className),
|
|
299
299
|
...props
|
|
300
300
|
}
|
|
301
301
|
));
|
|
@@ -368,7 +368,7 @@ const SidebarMenuItem = React.forwardRef(({ className, ...props }, ref) => /* @_
|
|
|
368
368
|
SidebarMenuItem.displayName = "SidebarMenuItem";
|
|
369
369
|
const sidebarMenuButtonVariants = cva(
|
|
370
370
|
`peer/menu-button flex w-full items-center gap-4 overflow-hidden
|
|
371
|
-
rounded-full
|
|
371
|
+
rounded-full py-2 px-3 text-left body-large-500 text-grey-800 outline-none ring-sidebar-ring transition-[width,height,padding]
|
|
372
372
|
hover:bg-blue-100 hover:text-sidebar-accent-foreground hover:cursor-pointer
|
|
373
373
|
focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground
|
|
374
374
|
disabled:pointer-events-none disabled:opacity-50
|