I am trying to make a column be minimum 50% wide but fill the space that is left when there is space left. How do I accomplish that by using bootstrap? When I use "flex-grow-1" it does not work, because Bootstrap adds a "max-width: 50%" on my .col-6 column, in addition to the "flex-basis: 50%".
What I CAN do is add another rule on the column, saying "max-width: 100%" to override the bootstrap value. However, I am thinking there must be a "Bootstrap way" to do this. Is there?