Tweak table CSS

This commit is contained in:
Alex Cabal 2024-12-21 21:18:03 -06:00
parent 43e5de1cc2
commit 242f99f3b5
2 changed files with 12 additions and 8 deletions

View file

@ -17,7 +17,11 @@ legend{
width: 100%; width: 100%;
} }
.payments thead{ .payments{
margin-top: 1rem;
}
.payments thead th{
font-weight: bold; font-weight: bold;
} }

View file

@ -200,15 +200,15 @@ catch(Exceptions\InvalidPermissionsException){
<p> <p>
<a href="https://fundraising.fracturedatlas.org/admin/general_support/donations?query=<?= urlencode($user->Email ?? '') ?>">View all payments at Fractured Atlas</a> <a href="https://fundraising.fracturedatlas.org/admin/general_support/donations?query=<?= urlencode($user->Email ?? '') ?>">View all payments at Fractured Atlas</a>
</p> </p>
<table class="payments"> <table class="data-table payments">
<thead> <thead>
<tr> <tr>
<td>Created</td> <th>Created</th>
<td>Recurring?</td> <th>Recurring?</th>
<td>Gross</td> <th>Gross</th>
<td>Fee</td> <th>Fee</th>
<td>Net</td> <th>Net</th>
<td>Transaction ID</td> <th>Transaction ID</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>