Migrate servers table to a tailwind-based Table component

This commit is contained in:
Alejandro Celaya
2025-04-02 09:01:33 +02:00
parent 06fac716d1
commit c9ada8f41d
3 changed files with 34 additions and 36 deletions

View File

@@ -7,5 +7,5 @@ export type NoMenuLayoutProps = PropsWithChildren & {
};
export const NoMenuLayout: FC<NoMenuLayoutProps> = ({ children, className }) => (
<div className={clsx('no-menu-wrapper container-xl', className)}>{children}</div>
<div className={clsx('no-menu-wrapper tw:container tw:mx-auto', className)}>{children}</div>
);