Skip to content

Commit 8591b6e

Browse files
committed
refactor(Erbfolge): Correctly style required documents table
1 parent ceedc8b commit 8591b6e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/domains/nachlass/erbschein/shared/stringReplacements.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ export function buildRequiredDocumentsHtml(
6464
const rows = requiredDocuments
6565
.map(
6666
({ name, documents }) =>
67-
`<tr><td class="font-semibold pr-24 pb-kern-space-small align-top">${escape(name)}</td>` +
68-
`<td class="pb-kern-space-small">${documents}</td></tr>`,
67+
`<tr><td class="font-semibold p-kern-space-default pr-kern-space-none align-top">${escape(name)}</td>` +
68+
`<td class="p-kern-space-default pl-kern-space-none">${documents}</td></tr>`,
6969
)
7070
.join("");
71-
return `<table class="w-full"><tbody>${rows}</tbody></table>`;
71+
return `<table class="w-full bg-kern-white border-kern-neutral-200 rounded-kern-default"><tbody>${rows}</tbody></table>`;
7272
}
7373

7474
export function nachlassErbfolgeStringReplacements(

0 commit comments

Comments
 (0)