Skip to content

Commit

Permalink
Merge pull request #148 from supabase-community/fix/mobile-header
Browse files Browse the repository at this point in the history
Hide header text on mobile
  • Loading branch information
gregnr authored Dec 10, 2024
2 parents 7c4d401 + 24a51d7 commit 33e3467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function Layout({ children }: LayoutProps) {
{!isAuthRequired || (!!databases?.length && databases.length > 0) ? (
<Header />
) : (
<div className="fixed top-8 left-8 w-[419px] max-w-full flex justify-between z-20">
<div className="fixed top-8 left-8 w-[419px] max-w-full hidden lg:flex justify-between z-20">
<span className="text-sm text-muted-foreground font-mono">database.build</span>
<Link
href="https://supabase.com"
Expand Down

0 comments on commit 33e3467

Please sign in to comment.