Skip to content
This repository has been archived by the owner on Feb 4, 2024. It is now read-only.

Commit

Permalink
a color
Browse files Browse the repository at this point in the history
  • Loading branch information
elouanjef committed Jan 31, 2024
1 parent 8681389 commit 524cded
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions templates/admin.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ <h1 class="mb-0">Templates</h1>
}

function createTemplateForm(template) {
var infoContainer = $('<div>').addClass('card-body bg-secondary');
var infoContainer = $('<div>').addClass('card-body bg-secondary text-center');
var icon = $('<i>').addClass('bi bi-card-heading');
var img = $('<div>').addClass('text-center').append(icon);
var img = $('<div>').append(icon);
var cardBody = $('<div>').addClass('card-body');
var cardTitle = $('<h5>').addClass('card-title').html('Nom: <em>' + template.name + "</em>");
var cardTitle = $('<h5>').addClass('card-title').html('<em>' + template.name + "</em>");

cardBody.append(cardTitle);
infoContainer.append(img, cardBody);
Expand Down
2 changes: 1 addition & 1 deletion templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ <h5 class="modal-title" id="selectRoleModalLabel">Sélectionner le rôle</h5>
}

a {
color: inherit;
color: white;
}
</style>
{% block content %}{% endblock %}
Expand Down

0 comments on commit 524cded

Please sign in to comment.