Skip to content

Commit

Permalink
Fix modal and alert close (x) buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
zapotocnylubos committed Aug 25, 2024
1 parent dd4863b commit fe5cb9f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions webapp/templates/team/team_editor.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@
This problem is no longer available in any contest.
{% endif %}

<button type="button" class="close" data-bs-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
{% endif %}
Expand All @@ -73,9 +71,7 @@
<a class="btn btn-outline-secondary" href="{{ path('team_problem_statement', {'probId': problem.probid}) }}" download>
<i class="fa-solid fa-download"></i>
</a>
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<iframe src="{{ path('team_problem_statement', {'probId': problem.probid}) }}"
Expand Down

0 comments on commit fe5cb9f

Please sign in to comment.