Skip to content

Commit

Permalink
Fix use...with mixin example. (sass#454)
Browse files Browse the repository at this point in the history
Fixes sass#453
  • Loading branch information
Awjin Ahn committed Jun 2, 2020
1 parent 3e59de5 commit df1800f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/documentation/at-rules/use.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -325,10 +325,10 @@ another mixin to inject your styles.
}
}

@include styles {
@mixin styles {
code {
border-radius: $border-radius;
box-shadow: $box-shadow;
border-radius: $-border-radius;
box-shadow: -box-shadow();
}
}
---
Expand Down

0 comments on commit df1800f

Please sign in to comment.