mirror of
https://github.com/Xevion/rdap.git
synced 2025-12-06 01:16:00 -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;
|
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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user