I am currently working on a layout where the textarea turns into a Code Mirror when the page loads. Here is the basic structure of my code:
<div class="columns">
<div class="column is-paddingless" style="background: indigo;">
<textarea id="code-editor"></textarea>
</div>
<div class="column">
</div>
</div>
However, I have encountered an issue where the first column does not stretch to fill the vertical space of the page below the tabs, but instead only stretches to accommodate the size of the textarea. Here is an example of what I mean:
https://i.sstatic.net/W7wEj.png
Is there a way to make this column extend to fill the entire page?