From 6809578044f37cc13d54122c578b81480f9c1cd0 Mon Sep 17 00:00:00 2001
From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
Date: Tue, 7 Jan 2020 02:39:06 -0800
Subject: [PATCH] fix: change starting font-size (#37981)
---
.../use-for-to-create-a-sass-loop.english.md | 26 +++++++++----------
1 file changed, 13 insertions(+), 13 deletions(-)
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: