I have a simple flexbox layout...
.container {
display:flex;
flex-direction:row;
width:100%;
}
.left {
background:red;
}
.left img {
padding:20px;
}
.right {
background:green;
}
<div class="container">
<div class="left">
<img src="https://dummyimage.com/300x200/000/fff">
</div>
<div class="right">
Right content
</div>
</div>
How do I make the right column fill the remaining space?