Skip to content

Commit

Permalink
Fix table styling approve reminder
Browse files Browse the repository at this point in the history
  • Loading branch information
lil5 committed Jan 17, 2024
1 parent abaafdf commit ab0f765
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/internal/views/emails/de/approve_reminder.gohtml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<p>These participants are waiting to be accepted and receive further information on how to join your Loop.<br/>We would like you to ask to contact them.</p>

<table>
<table class="table">
<thead>
<tr>
<th>Name</th>
Expand Down
8 changes: 7 additions & 1 deletion server/internal/views/emails/layout.gohtml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,13 @@
------------------------------------- */

.table {
margin-bottom: 10px;
margin-bottom: 15px;
}
table.table > thead > tr > th,
table.table > thead > tr > td,
table.table > tbody > tr > th,
table.table > tbody > tr > td {
border: 1px solid #c6d8db;
}
.table > thead > tr > th {
background-color: #f3f4f6;
Expand Down

0 comments on commit ab0f765

Please sign in to comment.