From ed6f073e5bb85bd82e2b8748007d25a03c57152a Mon Sep 17 00:00:00 2001 From: woXrooX Date: Fri, 7 Jul 2023 21:33:54 +0500 Subject: [PATCH] Missing border radius when no --- source/js/SPA/css.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/source/js/SPA/css.js b/source/js/SPA/css.js index fcbf0c90..31b0a125 100755 --- a/source/js/SPA/css.js +++ b/source/js/SPA/css.js @@ -1801,6 +1801,22 @@ export default class CSS{ } } + &:not(:has(tfoot)) tbody{ + & > tr{ + &:last-child{ + & > td{ + &:first-child{ + border-bottom-left-radius: var(--radius); + } + + &:last-child{ + border-bottom-right-radius: var(--radius); + } + } + } + } + } + & > tfoot{ background-color: var(--color-surface-1); border-block-start: 1px solid var(--color-surface-3);