mirror of
https://github.com/Xevion/rdap.git
synced 2025-12-05 23:15:58 -06:00
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:
@@ -18,6 +18,14 @@
|
||||
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 */
|
||||
@keyframes spin {
|
||||
from {
|
||||
|
||||
Reference in New Issue
Block a user