I am facing an issue with my category img. When I hover over it, a red border appears at the top and my title moves down by 2px. How can I resolve this problem and eliminate the extra 2px?
.box {
display: inline-block;
background: pink;
margin-right: 10px;
width: 187px;
min-height: 70px;
height: 100%;
&:hover {
background: #F2F2F2;
border-top: 3px solid #E72D35;
}
}