I'm trying to use the react-icons but there's one problem. Every icon has weird margin at the top. How to get rid of this?
EDIT:
.mobileNavbar {
display: flex;
align-items: center;
justify-content: space-evenly;
@include yellow(background-color);
@include red(color);
width: 100%;
position:sticky;
bottom: 0;
.icon {
font-size: 1.3em;
}
@media (min-width: $tablet) {
.icon {
font-size: 1.5em;
}
}
}