Skip to content

Commit

Permalink
remove leading space in class definition
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpapst committed Feb 26, 2022
1 parent d861001 commit 8a70eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/embeds/card.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</div>
{% endif %}
{% if block('box_header_after') is defined %}{{ block('box_header_after') }}{% endif %}
<div class="{% if _collapsible %} {{ _collapsible_class }}{% if _collapsed %} collapse{% else %} show{% endif %}{% endif %} card-body{% if block('box_body_class') is defined %} {{ block('box_body_class') }}{% endif %}{% if _fullsize %} p-0{% endif %}">{{ block('box_body') }}</div>
<div class="{% if _collapsible %}{{ _collapsible_class }} {% if _collapsed %}collapse {% else %}show {% endif %}{% endif %}card-body {% if block('box_body_class') is defined %}{{ block('box_body_class') }} {% endif %}{% if _fullsize %}p-0 {% endif %}">{{ block('box_body') }}</div>
{% if block('box_footer_before') is defined %}{{ block('box_footer_before') }}{% endif %}
{% if _footer and block('box_footer') is defined %}
{#
Expand Down

0 comments on commit 8a70eaa

Please sign in to comment.