webapp: last table row shall have no bottom border

similar to the first row which has no border at the top.
This commit is contained in:
Bernhard Kirchen 2024-10-25 22:13:34 +02:00
parent 44613b726c
commit 8c3884c49b

View File

@ -11,3 +11,8 @@
text-align: end; text-align: end;
} }
} }
table.table tr:last-child th,
table.table tr:last-child td {
border-bottom: 0;
}