Skip to content

Commit

Permalink
#4279 Fixes off by 1px errors in any UI with inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Feb 20, 2017
1 parent 9e6e5f9 commit e01309c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/themes/default/globals/site.variables
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@
@inputPlaceholderColor: lighten(@inputColor, 75);
@inputPlaceholderFocusColor: lighten(@inputColor, 45);

/* Line Height Default For Inputs in Browser */
@inputLineHeight: 1.2142em;
/* Line Height Default For Inputs in Browser (Descendors are 17px at 14px base em) */
@inputLineHeight: (17 / 14);

/*-------------------
Focused Input
Expand Down

0 comments on commit e01309c

Please sign in to comment.