True mobile layout with responsive table rows (sticky header)

This commit is contained in:
7heMech
2025-11-13 02:44:24 +02:00
parent dadd10f89b
commit 1c442dcce6
3 changed files with 8 additions and 6 deletions

View File

@@ -2,5 +2,5 @@ interface Props {
children: React.ReactNode;
}
export function SiteContainer({ children }: Props) {
return <div className="container-xl py-3">{children}</div>;
return <div className="container-xl py-3 min-w-0 overflow-x-auto">{children}</div>;
}