I need to use two imagens, one is company logo and the other is the app logo.
So I created this nav bar and my idea is to position the images one on each side to see how it will look.
However, I cant move the position of the images inside the navbar, how could I do this?
I try the text-right, but without sucess
<nav class="navbar navbar-light bg-light">
    <a class="navbar-brand" href="#">
        <div class="row">
            <div class="col-md-6 text-center">
                <img src="~/Content/img/logo_1_v_.png" width="30" alt="">
            </div>
            <div class="col-md-6 text-right ">
                <img src="~/Content/img/logo_2_v_.png" width="30" alt="">
            </div>
        </div>        
    </a>
</nav>