Skip to content

Commit

Permalink
Merge pull request #80 from albbus-stack/main
Browse files Browse the repository at this point in the history
[Bug] Fixed web css overflow
  • Loading branch information
albbus-stack authored Sep 26, 2023
2 parents 09bf474 + cd11751 commit 887be43
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions apps/next/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@ export default trpc.withTRPC(T4App)
const Metadata = () => (
<Head>
<meta name="viewport" content="width=device-width,initial-scale=1" />
{/* Next Tamagui CSS fix */}
<style>
{`
body, #root, #__next {
min-width: 100% !important;
}
`}
</style>
{/* Metadata */}
<title>{title}</title>
<meta name="description" content={description} />
Expand Down

0 comments on commit 887be43

Please sign in to comment.