Christian Köberl
Christian Köberl
For all people not patient enough (like me): I have published the package here: https://www.npmjs.com/package/@derkoe/remix-azure-functions. (The build/code publishing this package is here: https://github.com/derkoe/remix-azure-functions)
Look at the demo app inside the project - after #842 there is an example now. Or here is a StackBlitz showing all the issues https://stackblitz.com/edit/clarity-v3-light-theme-fa32z9
This also seems to happen with Clarity's Datagrid - updated the StackBlitz
Created an issue in the Clarity project https://github.com/vmware/clarity/issues/4824
The reason for this is the wrong `line-height` set by `.treetable .treetable-cell, .treetable .treetable-column`
This is our workaround - I have no idea where to put this ``` .treetable .treetable-cell, .treetable .treetable-column .unit { line-height: unset; } ```
Here's a StackBlitz showing all issues with the Treetable https://stackblitz.com/edit/clarity-v3-light-theme-fa32z9
This issue also occurs with a Clarity Datagrid - updated the StackBlitz
Reason for this seems to be this CSS rule ```css treetable-host .treetable .treetable-row-scrollable :first-child { padding-left: 1.5rem; } ```
A workaround is to add this to your stylesheet ```css .treetable-host .treetable .treetable-row-scrollable :first-child { padding-left: revert; } ```