I'm trying to adjust the height of a wysiwyg editor housed within a panel to be 200px. How can I achieve this?
<div class="row">
<div class="col-xs-12 col-md-12 col-lg-8">
<panel heading="Product Description" panel-class="panel-inverse">
<wysiwyg-edit id="wysiwygProductDescription" content="vm.productDescription" config="vm.productConfig"></wysiwyg-edit>
</panel>
</div>
</div>
My attempt to set the height of the column using inline style didn't make the wysiwyg editor fit properly:
<div class="col-xs-12 col-md-12 col-lg-8" style="height: 200px;">
I also tried utilizing -h and mh at the column or row level, but it didn't have the desired effect.
The wysiwyg editor plugin in use can be found here: https://github.com/psergus/ngWYSIWYG