Skip to content

Commit

Permalink
fix(examples): fix title doesn't show when height is too small
Browse files Browse the repository at this point in the history
  • Loading branch information
baurine committed Aug 2, 2024
1 parent fef46e6 commit 4d03a15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/playground-nextjs/app/examples/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Page({
const showOutputBox = ex === 'events' || ex === 'all'

return (
<main className="flex h-screen place-items-center justify-center p-4">
<main className="flex min-h-screen place-items-center justify-center p-4">
<div className="max-w-7xl min-w-[800px]">
<div className="text-center">
<h1 className="text-xl font-bold tracking-tight sm:text-3xl">
Expand Down

0 comments on commit 4d03a15

Please sign in to comment.