order transparency desc + spacing

This commit is contained in:
localhost 2025-12-31 22:32:32 +01:00
parent 1bf89c3e31
commit ce19fea3c0
2 changed files with 4 additions and 3 deletions

View File

@ -15,6 +15,7 @@ app.get('/transparency', async ({ set }) => {
const reports = await db.selectFrom('reports') const reports = await db.selectFrom('reports')
.selectAll() .selectAll()
.orderBy('date desc')
.execute() .execute()
const html = await m(eta.render('./transparency', { const html = await m(eta.render('./transparency', {

View File

@ -6,8 +6,8 @@
<% }) %> <% }) %>
</div> </div>
<style> <style>
.grid { .grid {
margin-top: 10px; margin-top: 10px;
margin-bottom: 10px; margin-bottom: 10px;
text-align: center; text-align: center;
@ -16,6 +16,6 @@
.title { .title {
font-size: larger; font-size: larger;
font-weight: 600; font-weight: 600;
display: inline-block; display: block;
} }
</style> </style>