File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
site/src/components/Command Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export const CommandInput = forwardRef<
53
53
< CommandPrimitive . Input
54
54
ref = { ref }
55
55
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
57
57
placeholder:text-content-secondary
58
58
disabled:cursor-not-allowed disabled:opacity-50` ,
59
59
className ,
@@ -69,7 +69,10 @@ export const CommandList = forwardRef<
69
69
> ( ( { className, ...props } , ref ) => (
70
70
< CommandPrimitive . List
71
71
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
+ ) }
73
76
{ ...props }
74
77
/>
75
78
) ) ;
You can’t perform that action at this time.
0 commit comments