From 45a4c0c75d959f5022ce76d2c9cc3d153bc22a7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Poupard?= Date: Thu, 14 Oct 2021 17:12:39 +0200 Subject: [PATCH] fix(tables): less naive table children separator --- scss/_tables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_tables.scss b/scss/_tables.scss index 30e898b58..d0e6727c5 100644 --- a/scss/_tables.scss +++ b/scss/_tables.scss @@ -41,7 +41,7 @@ } // Highlight border color between thead, tbody and tfoot. - > :not(:first-child) { + > :not(caption):not(colgroup) + * { border-top: (2 * $table-border-width) solid $table-group-separator-color; } }