And so, I want to create an entry button for the site. It has text inside and to the right a down arrow. Here's the code for the moment:
<a href="#" class="login f_left">Sign in</a> scss:
.login { display: block; color: $login_blue; font: $main_font; font-weight: bold; padding: 11px 24px; background: $login_light_blue url("../img/polygon.png") no-repeat scroll 76px 20px; line-height: 19px; @include transition(0.2s background); &:hover { background: $yellow url("../img/polygon.png") no-repeat scroll 76px 20px; } } This arrow hangs with the background As you can see, there is no fixed width and I set the shape with a pading. But in this situation, the button looks flattened in chrome and the arrow climbs onto the inscription.
Question: Am I making the button correctly? Maybe it’s necessary not by padding, but by width and height or something else
thank