I want to increase the min-width of the slds-tree_container as the text gets wrapped beyond a certain width.
Tree.html
<template>
<lightning-tree items={roleItems} class="" onselect={handleSelect} >
</lightning-tree>
</template>
Because of the new Shadow DOM styling in LWC I can't change the CCS style of the inner components (In this case slds-tree_container). Is there a way to set auto width ?
