Skip to content

Commit

Permalink
fix button stack order (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielruss authored Jun 5, 2024
1 parent 48db987 commit 8694c21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions replace2.js
Original file line number Diff line number Diff line change
Expand Up @@ -755,13 +755,13 @@ transform.render = async (obj, divId, previousResults = {}) => {
</fieldset>
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-12">
<div class="col-md-3 col-sm-12 order-3 order-md-1">
${prevButton}
</div>
<div class="col-md-6 col-sm-12">
<div class="col-md-6 col-sm-12 order-2">
${resetButton}
</div>
<div class="col-md-3 col-sm-12">
<div class="col-md-3 col-sm-12 order-1 order-md-3">
${nextButton}
</div>
</div>
Expand Down

0 comments on commit 8694c21

Please sign in to comment.