I have a row of 3 columns.
logo - search - fb login
<div class="row col my-auto">
<div id="logo" class="col-auto">
<a href="./index.html">
<img src="images/logo.png" alt="ppissis logo"/>
</a>
</div>
<div id="search" class="col-7">
(...input)
</div>
<div id="fb" class="col-1 ml-auto">
<img src="images/fb_login.png" alt="FB login" height="40"/>
</div>
</div>
On mobile, I want this to change to 2 rows. The first to contain logo and fb login and the second line to include search.
logo(upper-left) fb-login(upper-right)
search(whole line)
Using bootstrap I'd be able to achieve that with push and pull but now with B4 I am not sure how to implement it.
Any ideas on how to implement this using bootstrap 4?