Skip to content

Commit f90c671

Browse files
committed
DOC-5527 Changed table column names from break-all to break-normal to prevent strange wrapping
1 parent 2f25cff commit f90c671

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

assets/css/index.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,8 +593,13 @@ html {
593593
@apply table w-full table-fixed;
594594
}
595595

596-
.docs .prose table td,
596+
/* Table headers should break naturally at word boundaries */
597597
.docs .prose table th {
598+
@apply whitespace-normal break-normal p-2;
599+
}
600+
601+
/* Table data cells can break more aggressively for long content */
602+
.docs .prose table td {
598603
@apply whitespace-normal break-words p-2;
599604
}
600605
}

0 commit comments

Comments
 (0)