Skip to content

Commit 572ca4d

Browse files
authored
fix(games): remediate datatable x-axis overflow (RetroAchievements#4577)
Resolves https://discord.com/channels/310192285306454017/1474379506184622100.
1 parent 957d5e5 commit 572ca4d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

resources/js/common/layouts/AppLayout/AppLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ interface AppLayoutMainProps {
2525

2626
const AppLayoutMain: FC<AppLayoutMainProps> = ({ children, className }) => {
2727
return (
28-
<article className={cn('relative z-10 !px-2.5 sm:!px-4 md:!px-5', className)}>
28+
<article className={cn('relative z-10 min-w-0 !px-2.5 sm:!px-4 md:!px-5', className)}>
2929
{children}
3030
</article>
3131
);

0 commit comments

Comments
 (0)