From df1800fc69e0be8e4f9d05e57b321c5d7ea5639d Mon Sep 17 00:00:00 2001 From: Awjin Ahn Date: Tue, 2 Jun 2020 09:12:08 -0700 Subject: [PATCH] Fix use...with mixin example. (#454) Fixes https://github.com/sass/sass-site/issues/453 --- source/documentation/at-rules/use.html.md.erb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/documentation/at-rules/use.html.md.erb b/source/documentation/at-rules/use.html.md.erb index ec0e490af..93abe814a 100644 --- a/source/documentation/at-rules/use.html.md.erb +++ b/source/documentation/at-rules/use.html.md.erb @@ -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(); } } ---