Skip to content

Commit

Permalink
Update buttons size
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonatan Salas committed Sep 2, 2016
1 parent f8c0e6c commit c73bd75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/group/WizardTabGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ class TabGroup extends BaseGroup {

if (position != 0) {
backButton = (
<Button bsStyle="primary" bsSize="large" onClick={this.backStep}>
<Button bsStyle="primary" onClick={this.backStep}>
Previous
</Button>
);
}

if (position != totalSteps) {
nextButton = (
<Button bsStyle="primary" bsSize="large" onClick={this.nextStep}>
<Button bsStyle="primary" onClick={this.nextStep}>
Next
</Button>
);
Expand Down

0 comments on commit c73bd75

Please sign in to comment.