Skip to content

Commit f7ec9ab

Browse files
Add borders and padding to prose tables in docs (#141)
Tables in the docs site lacked visual separation between cells. Added full cell borders and an outer table border so content is easier to read. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5f400d7 commit f7ec9ab

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

docs-site/src/app/globals.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,13 +291,14 @@ a.docs-sidebar-section-title:hover {
291291
border-collapse: collapse;
292292
margin-bottom: 1.5rem;
293293
font-size: 0.875rem;
294+
border: 1px solid var(--border);
294295
}
295296

296297
.prose th,
297298
.prose td {
298299
padding: 0.75rem 1rem;
299300
text-align: left;
300-
border-bottom: 1px solid var(--border);
301+
border: 1px solid var(--border);
301302
}
302303

303304
.prose th {

0 commit comments

Comments
 (0)