refactor(recovery): remove protected table separators

This commit is contained in:
rcourtman 2026-03-28 10:53:49 +00:00
parent 7822cb1014
commit a822ea34f7
7 changed files with 104 additions and 5 deletions

View file

@ -338,8 +338,8 @@ export const RecoveryProtectedInventorySection: Component<
class="w-full border-collapse whitespace-nowrap"
style={{ 'table-layout': 'fixed', 'min-width': props.isMobile ? '100%' : '640px' }}
>
<TableHeader>
<TableRow class="border-b border-border bg-surface-alt/95 text-muted">
<TableHeader class="border-b-0">
<TableRow class="bg-surface-alt/95 text-muted">
{(
[
['item', getRecoveryArtifactColumnLabel('item', 'Item')],
@ -379,7 +379,7 @@ export const RecoveryProtectedInventorySection: Component<
))}
</TableRow>
</TableHeader>
<TableBody class="divide-y divide-border-subtle/60">
<TableBody class="divide-y-0">
<For each={visibleRollups()}>
{(rollup) => {
const resourceIndex = props.resourcesById();