When resizing the browser window, I noticed that the border of certain elements, such as this deposit button, gets clipped depending on the width. It seems that when I adjust the width pixel by pixel, the border appears and disappears with each movement. Could this be related to the even/odd pixels on a retina display where there are two real pixels per css pixel? For reference, I am using a 15" retina MacBook Pro at 1680x1050.
Below is the SCSS code for the button:
.make-deposit {
background-color: transparent;
border: 1px solid $green;
color: $green;
padding: 6px 14px;
margin-right: 5px;
font-size: 12px;
position: relative;
top: -3px;
&:hover {
background-color: $green;
color: $white;
}
}