From 6184c68bd134dbd6b6e6ff65fc9177027a0c74bf Mon Sep 17 00:00:00 2001 From: sheepluo Date: Tue, 12 Sep 2023 18:55:20 +0800 Subject: [PATCH] feat(web): table column controller margin --- style/web/components/table/_index.less | 4 ++++ style/web/components/table/_var.less | 2 ++ 2 files changed, 6 insertions(+) diff --git a/style/web/components/table/_index.less b/style/web/components/table/_index.less index f88313192e..21ec5e5f8d 100644 --- a/style/web/components/table/_index.less +++ b/style/web/components/table/_index.less @@ -94,6 +94,10 @@ padding: @table-controller-trigger-padding; } + &__column-controller-item:not(:last-child) { + margin-bottom: @table-controller-item-margin; + } + &__content { position: relative; .scrollbar(); diff --git a/style/web/components/table/_var.less b/style/web/components/table/_var.less index ce2002016a..74983f4929 100644 --- a/style/web/components/table/_var.less +++ b/style/web/components/table/_var.less @@ -46,3 +46,5 @@ @table-icon-size: @font-size-l; @table-double-sort-icon-space: @comp-margin-xxs; @table-filter-icon-margin-left: @comp-margin-s; + +@table-controller-item-margin: @comp-margin-l;