From 325f8445d22ee475725dd0acf8b4b6e6da39379d Mon Sep 17 00:00:00 2001 From: kurudrive Date: Sat, 9 Jul 2022 00:32:45 +0900 Subject: [PATCH] fix / table : table border left and right on vk-table-border-top-bottom --- src/extensions/core/table/style.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/extensions/core/table/style.scss b/src/extensions/core/table/style.scss index b34e76a7e..66c3b3fa3 100644 --- a/src/extensions/core/table/style.scss +++ b/src/extensions/core/table/style.scss @@ -5,10 +5,12 @@ } &.is-style-vk-table { &-border-top-bottom { - th,td{ - border-top: none; + table,th,td { border-left: none; border-right: none; + } + th,td{ + border-top: none; border-bottom:1px solid var(--vk-color-border-hr); } }