Skip to content

Commit

Permalink
fix(input): text input width calculation (#8063)
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-agius4 authored and brandyscarney committed Oct 12, 2016
1 parent 58beb41 commit 21fa5cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/input/input.ios.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $text-input-ios-highlight-color-invalid: color($colors-ios, danger) !default;
margin: $text-input-ios-margin-top $text-input-ios-margin-right $text-input-ios-margin-bottom $text-input-ios-margin-left;
padding: 0;

width: calc(100% - #{$text-input-ios-margin-right} - #{$text-input-ios-margin-left});
width: calc(100% - #{($text-input-ios-margin-right + $text-input-ios-margin-left)});
}


Expand Down

0 comments on commit 21fa5cd

Please sign in to comment.