Use overflow-auto instead of overflow-scroll
All checks were successful
Deploy website / deploy (push) Successful in 30s

This commit is contained in:
2025-08-14 21:04:53 +10:00
parent 07daf42133
commit 5316bae6fe

View File

@@ -6,7 +6,7 @@ const { tag: Tag = "section", class: className, ...props } = Astro.props;
<Tag
class:list={[
"relative px-5 py-4 min-w-0 min-h-0 overflow-scroll",
"relative px-5 py-4 min-w-0 min-h-0 overflow-auto",
"bg-white rounded-lg shadow-xs",
className,
]}