浏览代码

Do not display empty <fieldset> (#2045)

BG-Software 8 月之前
父节点
当前提交
df46ee7664
共有 2 个文件被更改,包括 9 次插入0 次删除
  1. 5 0
      .changeset/soft-suits-count.md
  2. 4 0
      src/scss/ui/_forms.scss

+ 5 - 0
.changeset/soft-suits-count.md

@@ -0,0 +1,5 @@
+---
+"@tabler/core": patch
+---
+
+Do not display empty `fieldset` element

+ 4 - 0
src/scss/ui/_forms.scss

@@ -130,6 +130,10 @@ Form control
   border-radius: var(--#{$prefix}border-radius);
 }
 
+fieldset:empty {
+  display: none;
+}
+
 /**
 Form help
  */