Skip to content

Commit 24a51d7

Browse files
committed
fix: hide header text on mobile
1 parent 7c4d401 commit 24a51d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/components/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default function Layout({ children }: LayoutProps) {
4949
{!isAuthRequired || (!!databases?.length && databases.length > 0) ? (
5050
<Header />
5151
) : (
52-
<div className="fixed top-8 left-8 w-[419px] max-w-full flex justify-between z-20">
52+
<div className="fixed top-8 left-8 w-[419px] max-w-full hidden lg:flex justify-between z-20">
5353
<span className="text-sm text-muted-foreground font-mono">database.build</span>
5454
<Link
5555
href="https://supabase.com"

0 commit comments

Comments
 (0)