I was using Boostrap 3 and I migrated to 4, but some things broke. I was able to resolve some, but I'm having trouble with this footer.
<div class="copyright">
<div class="container">
<div class="col-md-6 ">
<p>© Copyright @DateTime.Now.Year.- LMS/US-LOG/OLNF/TM</p>
</div>
<div class="row">
<div class="col-md-6">
<ul class="bottom_ul">
<li><a target="_blank">GISSUB</a></li>
<li><a href="#">SGMAR</a></li>
<li><a href="#">Suporte</a></li>
<li><a href="#">Chamados</a></li>
<li><a href="#">Recursos</a></li>
</ul>
</div>
</div>
</div>
.bottom_ul { list-style-type:none; float:right; margin-bottom:0px;}
.bottom_ul li { float:left; line-height:40px;}
.bottom_ul li:after { content:"/"; color:#FFF; margin-right:8px; margin-left:8px;}
.bottom_ul li a { color:#FFF; font-size:12px;}
As you can see in the image below, they are not aligned. How would I do to leave these divs on the same line and the right div aligned right of the screen?