I'm having trouble getting my social icons to float to the right-hand corner of my footer instead of the left. Despite using float: right; in my CSS, they are only slightly indenting from the left.
Does anyone have a solution?
footer {
background: #444;
padding: 15px;
}
.copy {
color: #fff;
text-align: center;
font-family:"Exo", sans-serif;
padding-top: 20px;
}
.smed i {
color: #fff;
font-size: 40px;
margin: 10px;
padding-top: 10px;
float: right;
}
.smed i:hover {
color: #ffa500;
}
<footer>
<div class="row text-center">
<div class="col-md-4 smed">
<i class="fab fa-github"></i>
<i class="fab fa-linkedin"></i>
<i class="fab fa-medium"></i>
<i class="fab fa-youtube"></i>
</div>
<div class="col-md-4">
<p class="text-light copy">Copyright 2020 Bootstrap4</p>
</div>
</div>
</footer>