You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding a column and setting the textalign property, this is effectively ignored because table headers are wrapped in a div (without any CSS reference) that sets "display: flex;", so all headers are pushed to the left.
Not sure where that comes from nor what purpose it is meant to serve, but a workaround is to add some custom css that overwrites, e.g.
th > div {
display: block !important;
}
The text was updated successfully, but these errors were encountered:
When adding a column and setting the textalign property, this is effectively ignored because table headers are wrapped in a div (without any CSS reference) that sets "display: flex;", so all headers are pushed to the left.
Not sure where that comes from nor what purpose it is meant to serve, but a workaround is to add some custom css that overwrites, e.g.
th > div {
display: block !important;
}
The text was updated successfully, but these errors were encountered: