From d06ea51c7ad7d18dfbb91502d2450a9db3a3028c Mon Sep 17 00:00:00 2001 From: Bernhard Kirchen Date: Fri, 25 Oct 2024 22:13:34 +0200 Subject: [PATCH] webapp: last table row shall have no bottom border similar to the first row which has no border at the top. --- webapp/src/scss/styles.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/webapp/src/scss/styles.scss b/webapp/src/scss/styles.scss index 9977f9215..fb6b75857 100644 --- a/webapp/src/scss/styles.scss +++ b/webapp/src/scss/styles.scss @@ -11,3 +11,8 @@ text-align: end; } } + +table.table tr:last-child th, +table.table tr:last-child td { + border-bottom: 0; +}