fix(style): Prevent body overflows
This commit is contained in:
parent
b72c0a3abe
commit
4bcc39cf0b
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ const { pageTitle, description } = Astro.props
|
|||
/>
|
||||
</head>
|
||||
<body
|
||||
class="font-sans text-zinc-300 w-full max-w-4xl px-4 mx-auto min-h-screen flex flex-col"
|
||||
class="font-sans text-zinc-300 w-full max-w-4xl px-4 mx-auto min-h-screen flex flex-col overflow-x-hidden"
|
||||
>
|
||||
<Header title={SITE_TITLE} />
|
||||
<main class="grow flex flex-col my-4 mx-4">
|
||||
|
|
Loading…
Add table
Reference in a new issue