Skip to content

Commit 6cb7b7e

Browse files
committed
fix: update command styles
1 parent 17dae76 commit 6cb7b7e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

site/src/components/Command/Command.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const CommandInput = forwardRef<
5353
<CommandPrimitive.Input
5454
ref={ref}
5555
className={cn(
56-
`flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-none
56+
`flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-none border-none
5757
placeholder:text-content-secondary
5858
disabled:cursor-not-allowed disabled:opacity-50`,
5959
className,
@@ -69,7 +69,10 @@ export const CommandList = forwardRef<
6969
>(({ className, ...props }, ref) => (
7070
<CommandPrimitive.List
7171
ref={ref}
72-
className={cn("max-h-96 overflow-y-auto overflow-x-hidden", className)}
72+
className={cn(
73+
"max-h-96 overflow-y-auto overflow-x-hidden border-0 border-t border-solid border-border",
74+
className,
75+
)}
7376
{...props}
7477
/>
7578
));

0 commit comments

Comments
 (0)