update serach button

This commit is contained in:
karamvir
2023-08-08 02:32:58 -07:00
parent 1b30a8edd4
commit 8e0c5b3792
2 changed files with 8 additions and 3 deletions

View File

@@ -74,8 +74,8 @@ export const Header = () => {
<div className="flex">
{user && (
<>
<WsStatusIndicator />
<Omnibar />
<WsStatusIndicator />
<DesktopUpdates />
</>
)}

View File

@@ -47,8 +47,13 @@ export const Omnibar = () => {
return (
<>
<Button variant="ghost" onClick={() => set(true)}>
<Search className="w-4 h-4" />
<Button
variant="outline"
onClick={() => set(true)}
className="flex items-center gap-4 w-[300px] justify-start"
>
<Search className="w-4 h-4" />{" "}
<span className="text-muted-foreground">Search</span>
</Button>
<CommandDialog open={open} onOpenChange={set}>
<CommandInput placeholder="Type a command or search..." />