In the footer, I have some social media links that are styled to appear as circles:
While everything looks great on Chrome, I've noticed an issue on Safari where the last link seems to be getting "cut off", and I'm struggling to identify the cause.
Below is the SCSS code I am currently using:
.social-links {
display: block;
float: right!important;
a {
border-radius: 50%;
padding: 10px 11px;
font-size: 20px;
background: $color3;
color: $color2;
margin-left: 5px;
&:hover {
background: $color4;
color: $color2!important;
}
}
i {
width: 21px!important;
height: 20px!important;
text-align: center;
}
}
Thank you in advance for any assistance provided!