diff --git a/challenges/03-front-end-libraries/sass.json b/challenges/03-front-end-libraries/sass.json
index dbc00c97e36..f9115732476 100644
--- a/challenges/03-front-end-libraries/sass.json
+++ b/challenges/03-front-end-libraries/sass.json
@@ -191,9 +191,9 @@
],
"description": [
"The @if directive in Sass is useful to test for a specific case - it works just like the if statement in JavaScript.",
- "
@mixin make-bold($bool) {", + "
@if $bool == bold { font-weight: bold; }
}
@mixin make-bold($bool) {", "And just like in JavaScript,
@if $bool == true {
font-weight: bold;
}
}
@else if and @else test for more conditions:",
- "@mixin text-effect($val) {", + "
@if $val == danger {color: red;}
@else if $val == alert {color: yellow;}
@else if $val == success {color: green;}
@else {color: black;}
}
@mixin text-effect($val) {", "
@if $val == danger {
color: red;
}
@else if $val == alert {
color: yellow;
}
@else if $val == success {
color: green;
}
@else {
color: black;
}
}
mixin called border-stroke that takes a parameter $val. The mixin should check for the following conditions using @if, @else if, and @else:",
"light - 1px solid black"
medium - 3px solid black
heavy - 6px solid black
none - no border