From d7647a0b6f409433679a655fbbe9d984d468c5c9 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Thu, 26 Jan 2023 16:43:46 -0600 Subject: [PATCH] Fix table borders between th and td in same line --- assets/css/bobastyle.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/css/bobastyle.css b/assets/css/bobastyle.css index 6ebd836..cafa652 100644 --- a/assets/css/bobastyle.css +++ b/assets/css/bobastyle.css @@ -694,8 +694,7 @@ table.markdown td { padding: 8px; } -table.markdown th + th, -table.markdown td + td { +table.markdown :is(th, td) + :is(th, td) { border-left: 2px solid var(--text-1); }