Skip to content

Commit a25c877

Browse files
committed
moar
1 parent 4437af9 commit a25c877

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

apps/postgres-new/components/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function Layout({ children }: LayoutProps) {
3131
)}
3232

3333
{/* <main className="flex-1 flex flex-col"> */}
34-
<Header />
34+
{/* <Header /> */}
3535
<main className="flex-1 flex flex-col lg:flex-row min-h-0">
3636
{/* TODO: make sidebar available on mobile */}
3737
{!isSmallBreakpoint && <Sidebar />}

apps/postgres-new/components/sidebar.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ export default function Sidebar() {
131131
<UserDropdown />
132132
{user && (
133133
<Button
134-
className="flex flex-row gap-2 items-center mx-2 hover:bg-black/10"
135134
onClick={async () => {
136135
await signOut()
137136
}}
@@ -162,7 +161,7 @@ export default function Sidebar() {
162161
</Button>
163162
</m.div>
164163
</TooltipTrigger>
165-
<TooltipContent side="right" className="bg-black text-white">
164+
<TooltipContent side="right">
166165
<p>Open sidebar</p>
167166
</TooltipContent>
168167
</Tooltip>
@@ -179,7 +178,7 @@ export default function Sidebar() {
179178
</Button>
180179
</m.div>
181180
</TooltipTrigger>
182-
<TooltipContent side="right" className="bg-black text-white">
181+
<TooltipContent side="right">
183182
<p>New database</p>
184183
</TooltipContent>
185184
</Tooltip>
@@ -190,16 +189,16 @@ export default function Sidebar() {
190189
<TooltipTrigger asChild>
191190
<m.div layout="position" layoutId="sign-out-button">
192191
<Button
193-
className="bg-inherit justify-end justify-self-end hover:bg-neutral-200 text-sm flex gap-3"
192+
size={'icon'}
194193
onClick={async () => {
195194
await signOut()
196195
}}
197196
>
198-
<LogOut size={18} strokeWidth={3} />
197+
<LogOut size={16} strokeWidth={1.3} />
199198
</Button>
200199
</m.div>
201200
</TooltipTrigger>
202-
<TooltipContent side="right" className="bg-black text-white">
201+
<TooltipContent side="right">
203202
<p>Sign out</p>
204203
</TooltipContent>
205204
</Tooltip>

0 commit comments

Comments
 (0)