let tables scroll horizontal if they need to

This commit is contained in:
saml33 2023-01-30 10:15:03 +11:00
parent 991d36aa62
commit 52e871e566
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ export const Table = ({
children: ReactNode
className?: string
}) => (
<div className="thin-scroll">
<div className="thin-scroll overflow-x-auto">
<table className={`m-0 min-w-full p-0 ${className}`}>{children}</table>
</div>
)