Fixed submit button display bug

This commit is contained in:
Éloi Rivard 2023-03-17 16:03:36 +01:00
parent f1e6cd1586
commit 7628bd1a41

View file

@ -135,7 +135,11 @@ id=none) -%}
{{ render_fields(form) }} {{ render_fields(form) }}
{% endif %} {% endif %}
{% if action_text %} {% if action_text %}
<button type="submit" class="{{ btn_class }}">{{ action_text }}</button> <div class="ui right aligned container">
<div class="ui stackable buttons">
<button type="submit" class="{{ btn_class }}">{{ action_text }}</button>
</div>
</div>
{% endif %} {% endif %}
</form> </form>
{%- endmacro %} {%- endmacro %}