fix: reduce the amount of section elements being used since most have no headers connected to them

This commit is contained in:
Christian Andolf
2025-04-28 14:47:26 +02:00
parent edc4f0c016
commit 32e95fcbbd
4 changed files with 6 additions and 6 deletions

View File

@@ -8,5 +8,5 @@ export default function Stackable({
columns,
}: React.PropsWithChildren<StackableGridProps>) {
const classNames = stackableGridVariants({ className, columns })
return <section className={classNames}>{children}</section>
return <div className={classNames}>{children}</div>
}