Skip to content

Commit

Permalink
fix: Add overflow-x-hidden, removes horizontal scroll caused by ver…
Browse files Browse the repository at this point in the history
…tical scrollbar
  • Loading branch information
AVGVSTVS96 committed Feb 8, 2025
1 parent 34db13b commit 5e24ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/AlternateBaseLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const { description, title } = Astro.props;
</head>
<body class="min-h-dvh w-screen">
<GlobalHotKeys client:load />
<main class="">
<main class="overflow-x-hidden">
<slot />
</main>
</body>
Expand Down

0 comments on commit 5e24ac4

Please sign in to comment.