fix(frontend): prevent table horizontal scroll on mobile by default

This commit is contained in:
Abhimanyu Saharan
2026-02-12 08:16:23 +00:00
parent bd1e599ae5
commit f9697a8ebd

View File

@@ -88,7 +88,7 @@ export function DataTable<TData>({
(table.getVisibleLeafColumns().length || 1) + (hasRowActions ? 1 : 0); (table.getVisibleLeafColumns().length || 1) + (hasRowActions ? 1 : 0);
return ( return (
<div className="overflow-x-auto"> <div className="overflow-x-hidden sm:overflow-x-auto">
<table className={tableClassName}> <table className={tableClassName}>
<thead <thead
className={ className={