소스 검색

Do not display empty <fieldset> (#2045)

BG-Software 11 달 전
부모
커밋
df46ee7
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
  */