Skip to content

Commit

Permalink
fix(checkbox-radio): use !important when hiding empty radio / checkbo…
Browse files Browse the repository at this point in the history
…x lables
  • Loading branch information
joneff committed Dec 31, 2021
1 parent d6196f5 commit 9c9e647
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/default/scss/checkbox/_layout.scss
Expand Up @@ -169,7 +169,7 @@

// Empty label
.k-checkbox-label:empty {
display: none;
display: none !important; // sass-lint:disable-line no-important
}


Expand Down
2 changes: 1 addition & 1 deletion packages/default/scss/radio/_layout.scss
Expand Up @@ -102,7 +102,7 @@

// Hide empty label
&:empty {
display: none;
display: none !important; // sass-lint:disable-line no-important
}

.k-ripple {
Expand Down

0 comments on commit 9c9e647

Please sign in to comment.