Skip to content

Commit

Permalink
Update button icons
Browse files Browse the repository at this point in the history
  • Loading branch information
tienvx committed Oct 15, 2021
1 parent 0dda8c7 commit c17156d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Resources/views/bootstrap_base_layout.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@
{% if form_parent(form).vars.allow_move_up %}
<button type="button" class="btn btn-link btn-link-secondary collection-js-elem-up"
title="{{ 'action.move_item_up'|trans }}">
<i class="fa fa-sort-up"></i>
<i class="fa fa-arrow-up"></i>
</button>
{% endif %}
{% if form_parent(form).vars.allow_move_down %}
<button type="button" class="btn btn-link btn-link-secondary collection-js-elem-down"
title="{{ 'action.move_item_down'|trans }}">
<i class="fa fa-sort-down"></i>
<i class="fa fa-arrow-down"></i>
</button>
{% endif %}
{% if form_parent(form).vars.allow_delete %}
<button type="button" class="btn btn-link btn-link-danger collection-js-elem-remove"
title="{{ 'action.remove_item'|trans }}">
<i class="fa fa-trash-alt"></i>
<i class="far fa-trash-alt"></i>
</button>
{% endif %}
{% endapply %}
Expand Down

0 comments on commit c17156d

Please sign in to comment.