From 8c3884c49b5e5334c80157a87de14c5a96f6523e 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 9977f921..fb6b7585 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; +}