Skip to content

Commit 1d5fc84

Browse files
committed
work
1 parent f2c1bfb commit 1d5fc84

File tree

1 file changed

+8
-8
lines changed
  • src/main/resources/templates/project/id

1 file changed

+8
-8
lines changed

src/main/resources/templates/project/id/show.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<div id="tw-content-title">
1414
<h2>
1515
<i class="fas fa-folder-open"></i>
16-
<span th:text="#{project.show.h1}">Project</span>
16+
<span th:text="#{project.show.h1}"class="me-3">Project</span>
1717
<span th:if="${thisProject.id gt 0}">
1818
<a class="btn btn-block btn-outline-dark" data-bs-toggle="collapse"
1919
href="#collapseDescription" role="button" aria-expanded="false" aria-controls="collapseExample">
@@ -24,31 +24,31 @@ <h2>
2424
<div class="collapse" id="collapseDescription">
2525
<div class="card card-body" th:text="${thisProject.description}"></div>
2626
</div>
27-
<div id="tw-content-title-actionbuttons">
27+
<div id="tw-content-title-actionbuttons" class="py-3">
2828
<div class="row">
29-
<div class="col-md-3 mb-3">
29+
<div class="col-md-3">
3030
<a class="btn btn-block btn-primary" role="button" href="#"
3131
th:href="@{/project/{thisProjectId}/task/add(thisProjectId=${thisProject.id})}">
3232
<i class="fas fa-plus-square"></i>
3333
<span th:text="#{project.show.addTask}">Add a Task</span>
3434
</a>
3535
</div>
36-
<div class="col-md-3 mb-3">
36+
<div class="col-md-3">
3737
<a class="btn btn-block btn-secondary" role="button" href="#"
3838
th:href="@{/project/{thisProjectId}/project/add(thisProjectId=${thisProject.id})}">
3939
<i class="fas fa-plus-square"></i>
4040
<span th:text="#{layout.page.addProject}">Add a Project</span>
4141
</a>
4242
</div>
43-
<div class="col-md-3 mb-3">
44-
<a class="btn btn-block btn-dark" role="button" href="#"
43+
<div class="col-md-3">
44+
<a class="btn btn-block btn-outline-dark" role="button" href="#"
4545
th:href="@{/project/{thisProjectId}/edit(thisProjectId=${thisProject.id})}">
4646
<i class="fas fa-edit"></i>
4747
<span th:text="#{project.show.edit}">Edit Project</span>
4848
</a>
4949
</div>
50-
<div class="col-md-3 mb-3">
51-
<a class="btn btn-block btn-dark" role="button" href="#"
50+
<div class="col-md-3">
51+
<a class="btn btn-block btn-outline-dark" role="button" href="#"
5252
th:href="@{/project/{thisProjectId}/delete(thisProjectId=${thisProject.id})}">
5353
<i class="fas fa-trash-alt"></i>
5454
<span th:text="#{project.show.delete}">Delete Project</span>

0 commit comments

Comments
 (0)