Tests not passing - Apply a Style Until a Condition is Met with @while

Tell us what’s happening:

Code and output appears correct, but tests are not passing. Possible issue with tests running before SASS is compiled.

Your code so far


<style type='text/sass'>
$x: 1;
@while $x < 11 {
  .text-#{$x} {font-size: 5px * $x;}
  $x: $x + 1;
}
</style>

<p class="text-1">Hello</p>
<p class="text-2">Hello</p>
<p class="text-3">Hello</p>
<p class="text-4">Hello</p>
<p class="text-5">Hello</p>
<p class="text-6">Hello</p>
<p class="text-7">Hello</p>
<p class="text-8">Hello</p>
<p class="text-9">Hello</p>
<p class="text-10">Hello</p>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/front-end-libraries/sass/apply-a-style-until-a-condition-is-met-with-while

There is a github issue on it, it works for some in some browsers, mostly firefox gets good on Sass challenges than chrome,

1 Like

thanks @Sujith3021 , appreciate your response!

You are welcome.! :slight_smile: