Skip to content

Commit

Permalink
use correct input sizing bootstrap classes
Browse files Browse the repository at this point in the history
  • Loading branch information
billdami committed Apr 6, 2020
1 parent 786b620 commit 7f6b49b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/dummy/app/templates/select.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
@placeholder="Large Select"
@allowClear={{false}}
@onChange={{action (mut this.selectLgValue)}}
class="input-lg"
class="form-control-lg"
/>
</div>
<div class="form-group">
Expand All @@ -48,7 +48,7 @@
@placeholder="Block Version"
@emptyOptionText="Select something..."
@onChange={{action (mut selectBlockValue)}}
class="input-lg"
class="form-control-lg"
as |Select|
>
<optgroup label="Custom Group">
Expand Down
6 changes: 3 additions & 3 deletions tests/dummy/app/templates/text.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<FlInput
@value={{this.inputLgValue}}
@placeholder="Large Input"
class="input-lg"
class="form-control-lg"
type="number"
min="1"
max="10"
Expand All @@ -50,14 +50,14 @@
@value={{this.inputInsetLgValue}}
@placeholder="Large Input (Inset)"
@inset={{true}}
class="input-lg"
class="form-control-lg"
/>
</div>
<div class="form-group">
<FlInput
@value={{this.inputSmValue}}
@placeholder="Small Input"
class="input-sm"
class="form-control-sm"
maxlength="16"
autocomplete="off"
/>
Expand Down

0 comments on commit 7f6b49b

Please sign in to comment.