I'd like to have a multi-line header because the truncation with the ellipses doesn't look great for my use case. I tried to overload it like this, but the more specific style always overloads it:
:global(.wx-text){
border: 1px solid #ff0000;
white-space: normal;
overflow-wrap: break-word;
word-break: break-word;
}
:global(.wx-willow-theme .grid .header-cell) {
white-space: normal;
overflow-wrap: break-word;
word-break: break-word;
line-height: 1.2;
padding: 4px;
}
More specific:
.wx-print-cell-header .wx-text, .wx-text.s-z3w4ZS1vP9Xu {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
Any suggestions?