Fix padding on input to match other interactive elements

This commit is contained in:
Justin Edmund 2023-01-06 03:13:37 -08:00
parent 40e218deb2
commit d070aea762

View file

@ -2,10 +2,10 @@
-webkit-font-smoothing: antialiased;
background-color: var(--input-bg);
border: 2px solid transparent;
border-radius: 6px;
border-radius: $input-corner;
box-sizing: border-box;
display: block;
padding: $unit-2x;
padding: calc($unit-2x - 2px);
width: 100%;
&[type='number']::-webkit-inner-spin-button {