diff --git a/curriculum/challenges/english/03-front-end-libraries/sass/use-for-to-create-a-sass-loop.english.md b/curriculum/challenges/english/03-front-end-libraries/sass/use-for-to-create-a-sass-loop.english.md index b7f90714ae..da97a02703 100644 --- a/curriculum/challenges/english/03-front-end-libraries/sass/use-for-to-create-a-sass-loop.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/sass/use-for-to-create-a-sass-loop.english.md @@ -41,7 +41,7 @@ This is a powerful way to create a grid layout. Now you have twelve options for ## Instructions
Write a @for directive that takes a variable $j that goes from 1 to 6. -It should create 5 classes called .text-1 to .text-5 where each has a font-size set to 10px multiplied by the index. +It should create 5 classes called .text-1 to .text-5 where each has a font-size set to 15px multiplied by the index.
## Tests @@ -51,16 +51,16 @@ It should create 5 classes called .text-1 to .text-5 w tests: - text: Your code should use the @for directive. testString: assert(code.match(/@for /g)); - - text: Your .text-1 class should have a font-size of 10px. - testString: assert($('.text-1').css('font-size') == '10px'); - - text: Your .text-2 class should have a font-size of 20px. - testString: assert($('.text-2').css('font-size') == '20px'); - - text: Your .text-3 class should have a font-size of 30px. - testString: assert($('.text-3').css('font-size') == '30px'); - - text: Your .text-4 class should have a font-size of 40px. - testString: assert($('.text-4').css('font-size') == '40px'); - - text: Your .text-5 class should have a font-size of 50px. - testString: assert($('.text-5').css('font-size') == '50px'); + - text: Your .text-1 class should have a font-size of 15px. + testString: assert($('.text-1').css('font-size') == '15px'); + - text: Your .text-2 class should have a font-size of 30px. + testString: assert($('.text-2').css('font-size') == '30px'); + - text: Your .text-3 class should have a font-size of 45px. + testString: assert($('.text-3').css('font-size') == '45px'); + - text: Your .text-4 class should have a font-size of 60px. + testString: assert($('.text-4').css('font-size') == '60px'); + - text: Your .text-5 class should have a font-size of 75px. + testString: assert($('.text-5').css('font-size') == '75px'); ``` @@ -98,7 +98,7 @@ tests: @@ -114,7 +114,7 @@ tests: