@@ -263,7 +263,7 @@ function CategorySection({
263263 key = { feature . id }
264264 className = "border-t border-[var(--border)] hover:bg-[var(--bg-hover)]"
265265 >
266- < td className = "sticky left-0 z-10 bg-[var(--bg-surface)] px-4 py-2 border-r border-[var(--border)] align-top" >
266+ < td className = "sticky left-0 z-10 bg-[var(--bg-surface)] px-1 py-1 border-r border-[var(--border)] align-top" >
267267 < div
268268 className = {
269269 testing
@@ -289,7 +289,7 @@ function CategorySection({
289289 />
290290 ) : (
291291 < td
292- className = "sticky left-[260px] z-10 px-3 py-2 border-r-2 border-r-[#c4b5fd] border-l border-[var(--border)] align-top"
292+ className = "sticky left-[260px] z-10 px-1 py-1 border-r-2 border-r-[#c4b5fd] border-l border-[var(--border)] align-top"
293293 style = { { backgroundColor : "#f5f0ff" } }
294294 >
295295 < span className = "text-[var(--text-muted)] text-[10px]" >
@@ -302,7 +302,7 @@ function CategorySection({
302302 return (
303303 < td
304304 key = { integration . slug }
305- className = "border-l border-[var(--border)] px-3 py-2 align-top text-center"
305+ className = "border-l border-[var(--border)] px-1 py-1 align-top text-center"
306306 >
307307 { demo ? (
308308 renderCell ( {
@@ -439,7 +439,7 @@ export function FeatureGrid({
439439 const categoryColSpan = integrations . length + 1 + ( showRefDepth ? 1 : 0 ) ;
440440
441441 return (
442- < div className = "p-8 max-w-[100vw] " >
442+ < div className = "p-8" >
443443 < header className = "mb-6" >
444444 < div className = "flex items-center gap-3" >
445445 < h1 className = "text-xl font-semibold tracking-tight" > { title } </ h1 >
@@ -453,11 +453,11 @@ export function FeatureGrid({
453453
454454 { connection === "error" && < OfflineBanner /> }
455455
456- < div className = "overflow-auto rounded-lg border border-[var(--border)] bg-[var(--bg-surface)]" >
456+ < div className = "rounded-lg border border-[var(--border)] bg-[var(--bg-surface)]" style = { { width : 'fit-content' , minWidth : '100%' } } >
457457 < table className = "border-collapse text-sm" >
458458 < thead >
459459 < tr >
460- < th className = "sticky left-0 top-0 z-30 bg-[var(--bg-muted)] px-4 py-3 text-left min-w-[260px ] border-b border-[var(--border)]" >
460+ < th className = "sticky left-0 top-0 z-30 bg-[var(--bg-muted)] px-1 py-1.5 text-left min-w-[160px ] border-b border-[var(--border)]" >
461461 < span className = "text-[10px] font-medium uppercase tracking-wider text-[var(--text-muted)]" >
462462 Feature
463463 </ span >
@@ -498,7 +498,7 @@ export function FeatureGrid({
498498 return (
499499 < th
500500 key = { integration . slug }
501- className = "sticky top-0 z-20 bg-[var(--bg-muted)] px-3 py-3 text-left border-b border-l border-[var(--border)] font-normal"
501+ className = "sticky top-0 z-20 bg-[var(--bg-muted)] px-1 py-1.5 text-center border-b border-l border-[var(--border)] font-normal"
502502 style = { { minWidth : `${ minColWidth } px` } }
503503 >
504504 < div className = "text-xs font-semibold text-[var(--text)]" >
0 commit comments