From 922d1d075575768187be2a1a84402057fad079ab Mon Sep 17 00:00:00 2001 From: xfy Date: Fri, 3 Jul 2026 17:31:05 +0800 Subject: [PATCH] fix(ui): apply border-radius to table corner cells to prevent background bleed --- input.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/input.css b/input.css index c27b54d..dc4a0e4 100644 --- a/input.css +++ b/input.css @@ -409,6 +409,22 @@ white-space: nowrap; } + .md-content table thead th:first-child { + border-top-left-radius: 16px; + } + + .md-content table thead th:last-child { + border-top-right-radius: 16px; + } + + .md-content table tbody tr:last-child td:first-child { + border-bottom-left-radius: 16px; + } + + .md-content table tbody tr:last-child td:last-child { + border-bottom-right-radius: 16px; + } + .md-content table tbody td { padding: 16px 24px; line-height: 1.6;