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')
.selectAll()
.orderBy('date desc')
.execute()
const html = await m(eta.render('./transparency', {

View File

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