Skip to content

Commit

Permalink
fix(ui): minor UI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tnfssc committed Aug 8, 2024
1 parent b3e561a commit bc1f9f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const Row: React.FC<Plugin & { index: number }> = ({ name }) => {
}}
>
<div className="flex w-full justify-between">
<div className="flex flex-col items-start gap-2">
<div className="flex flex-row items-center gap-2">
<code>{name}</code>
{isProjectTool && <Badge variant="outline">Current project</Badge>}
</div>
Expand Down
3 changes: 1 addition & 2 deletions src/routes/asdf/_layout.tool.$toolName.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ function Page() {
return (
<div className="flex h-screen flex-col">
<div className="flex justify-center">
<div className="flex items-center justify-between p-4">
<div className="flex items-center justify-between gap-2 p-4">
<code>{tool}</code>
<Input className="flex" placeholder="Search" value={search} onChange={(e) => setSearch(e.target.value)} />
<div className="flex gap-2">
Expand Down Expand Up @@ -214,7 +214,6 @@ function Page() {
</div>
</div>
</div>
{/* <Center flex="1" pos="relative"> */}
<div className="relative flex flex-1 justify-center">
<div className="absolute bottom-0 left-0 right-0 top-0 overflow-auto" ref={parentRef}>
<ul
Expand Down

0 comments on commit bc1f9f7

Please sign in to comment.