I have this category img and on hover effect appear border top red and my title goes down for 2 px. How can I fix this by removing this 2 px.
.box {
display: inline-block;
background: pink;
margin-right: 10px;
width: 187px;
min-height: 70px;
height: 100%;
&:hover {
background: #F2F2F2;
border-top: 3px solid #E72D35;
}
}