1

fix styling, add missing attributes

This commit is contained in:
kasch309
2020-03-17 13:47:09 +01:00
parent f05b92994f
commit bae8805972
3 changed files with 4 additions and 3 deletions

View File

@ -31,10 +31,11 @@
<h1>Meine Gruppen</h1>
<form action="/" method="get">
<div th:each="gruppe: ${gruppen}">
<div class="shadow-sm p-4" style="border: 1px solid white; background: white">
<div class="shadow-sm p-4" style="border: none; background: aliceblue">
<h3 style="color: dodgerblue; font-weight: bold;">
<a th:href="@{/gruppen2/details(id=${gruppe.getId()})}" th:text="${gruppe.getTitle()}"></a>
</h3>
<p th:text="${gruppe.getDescription()}"></p>
</div>
<br>
</div>