I am attempting to modify the height of a component within my library that includes a table. Despite my efforts, I am unable to adjust the height of the lib-table element.
Here is a snippet of the component structure:
<div class"table-wrap">
<table>
...
</table>
</div>
In my App.html file, I have tried to change the height using the following code:
<lib-table class"height"></lib-table>
Then in my App.css file, I specified the desired height with the following CSS:
.height {
height: 50vh;
}