12363 update paragraph spacing on journal table

This commit is contained in:
Arthur 2023-05-02 09:26:44 -07:00
parent a566a56a64
commit 9f56f3441c
5 changed files with 11 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -266,6 +266,16 @@ table {
}
}
.journal-table table {
td,
th {
p {
// Remove spacing from paragraph elements within tables.
margin-bottom: 1rem;
}
}
}
div.title-container {
display: flex;
// On small screens, `flex-direction: column;` ensures the control buttons don't appear on the

View File

@ -6,7 +6,7 @@
{% block content %}
<div class="card">
<div class="card-body table-responsive">
<div class="card-body table-responsive journal-table">
{% render_table table 'inc/table.html' %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
</div>