Skip to content

Commit

Permalink
fix(theme): mixin-pattern error
Browse files Browse the repository at this point in the history
  • Loading branch information
wewoor committed Nov 24, 2020
1 parent 05099b0 commit 1f82d95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/style/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
}

// =============== Collapse =============== //
@mixin borderColor($color) {
@mixin border-color($color) {
border: 1px solid $color;
}
#{prefix($collapse)} {
Expand All @@ -126,7 +126,7 @@

&:focus,
&:active {
@include borderColor(rgba(97, 97, 97, 0.19));
@include border-color(rgba(97, 97, 97, 0.19));
}

.rc-collapse-extra {
Expand All @@ -150,7 +150,7 @@
}

.rc-tree-treenode.drag-over > .draggable {
@include borderColor(#316ac5);
@include border-color(#316ac5);
background-color: #316ac5;
color: #bbb;
}
Expand Down

0 comments on commit 1f82d95

Please sign in to comment.