Skip to content

Commit 33e3467

Browse files
authored
Merge pull request #148 from supabase-community/fix/mobile-header
Hide header text on mobile
2 parents 7c4d401 + 24a51d7 commit 33e3467

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)