Skip to content

Commit

Permalink
fix(checkbox): 上次修改checkbox样式改的地方不对,fix (#232)
Browse files Browse the repository at this point in the history
affects: @gio-design/components
  • Loading branch information
Lee Hon authored Sep 21, 2020
1 parent b4d3e80 commit 5151510
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/components/src/components/checkbox/style/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
}
}

&-indeterminate {
.gio-icon&-indeterminate {
display: none;
}
}
Expand Down Expand Up @@ -132,7 +132,7 @@
}
}

.gio-icon&-indeterminate {
&-indeterminate {
.@{checkbox-inner-prefix-cls} {
&::after {
transform: scale(1);
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/components/tag/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ export interface TagProps {
onClose?: (e: React.MouseEvent<HTMLSpanElement>) => void;
customizePrefixCls?: string;
children: React.ReactNode;
className: string;
className?: string;
}

0 comments on commit 5151510

Please sign in to comment.