Skip to content

Commit

Permalink
Merge pull request #70 from tidbcloud/fix/overflow
Browse files Browse the repository at this point in the history
fix(examples): fix title doesn't show when height is too small
  • Loading branch information
baurine authored Aug 2, 2024
2 parents fef46e6 + 4d03a15 commit 4bfe35c
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 4bfe35c

Please sign in to comment.