From b5bea4e3074a9a871087338743a048252138e399 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=A1=E8=89=B2?= Date: Thu, 14 Dec 2023 14:18:18 +0800 Subject: [PATCH] fix(abc:sv): fix bottom spacing in border mode (#1732) --- packages/abc/sv/style/index.less | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/abc/sv/style/index.less b/packages/abc/sv/style/index.less index cd5ca933c6..0b7ad7bf97 100644 --- a/packages/abc/sv/style/index.less +++ b/packages/abc/sv/style/index.less @@ -233,7 +233,6 @@ &__bordered { overflow: hidden; border-top: 1px solid @border-color-split; - border-bottom: 1px solid @border-color-split; border-left: 1px solid @border-color-split; @{sv-prefix}__item { @@ -264,5 +263,10 @@ padding: @descriptions-small-padding; } } + + // offset the padding-bottom of last row + .@{ant-prefix}-row { + margin-bottom: 0; + } } }