There is an HTML element containing an image and text positioned side by side using Bootstrap. Here is the code:
<div class="row">
<div class="col-md-6">
<div class="avatar">
<img src="<?= get_template_directory_uri(); ?>/dist/images/weare.png" alt="" class="img-responsive">
</div>
</div>
<div class="col-md-6">
<blockquote>
<h1>Title</h1>
<p>Text.</p>
</blockquote>
</div>
</div>
The issue arises when viewing the design on a small screen where the image does not take up the full canvas size.
https://i.sstatic.net/jqD6M.png
On a large screen, the text box appears way too large.
https://i.sstatic.net/fMkf6.png
Looking for a way to maintain a fixed height on all screen sizes, I am seeking help with adjusting the Bootstrap and flexbox properties.