style: prevent word-breaking in table header cells

Add CSS rules to prevent word-breaking, overflow-wrapping, and hyphenation
in Radix UI table column headers to maintain proper text formatting.
This commit is contained in:
2025-10-23 00:00:43 -05:00
parent 72c88fb719
commit 07e1334173

View File

@@ -18,6 +18,14 @@
scrollbar-width: thin; scrollbar-width: thin;
} }
/* Table header cell styling - prevent word-breaking */
.rt-TableColumnHeaderCell {
word-break: normal;
overflow-wrap: normal;
hyphens: none;
white-space: normal;
}
/* Keep animate-spin for loading states */ /* Keep animate-spin for loading states */
@keyframes spin { @keyframes spin {
from { from {