Skip to content

Commit

Permalink
Increasing width of suffix and prefix inputs
Browse files Browse the repository at this point in the history
The original width of 15px seemed to narrow if a user wanted to add "years old" as a suffix.
  • Loading branch information
jerriais authored Apr 17, 2018
1 parent 0442765 commit e169a79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ <h4 class="inlineLeft noMargin weight300">Options:</h4>
<label class="inlineLabel">Decimal</label>
</div>
<div class="inlineLeft marginRight">
<input type="text" value="" id="prefix" style="width:15px; padding:0 5px;" onkeyup="updateCodeVisualizer()">
<input type="text" value="" id="prefix" style="width:150px; padding:0 5px;" onkeyup="updateCodeVisualizer()">
<label class="inlineLabel">Prefix</label>
</div>
<div class="inlineLeft marginRight">
<input type="text" value="" id="suffix" style="width:15px; padding:0 5px;" onkeyup="updateCodeVisualizer()">
<input type="text" value="" id="suffix" style="width:150px; padding:0 5px;" onkeyup="updateCodeVisualizer()">
<label class="inlineLabel">Suffix</label>
</div>
</form>
Expand Down

0 comments on commit e169a79

Please sign in to comment.