Salesforce Chatter Component sets table header white-space: nowrap; in common.css

Skuid 11.2.10

The common.css introduces the following styling that messes with skuid tables in certain situations.

th {
    text-align: left;
    font-weight: bold;
    white-space: nowrap
}```
![](upload://2F3prrjfV9LItwDA68IzBAkmTMO.jpeg "Image httpsd2r1vs3d9006apcloudfrontnets3_images1815377RackMultipart20191123-73122-12rusd-2019-11-23_15-37-49_inlinejpg1574541506")

So I added the following to the theme.

table.nx-skootable-data th {
    white-space: unset;
}