Apply a Style Until a Condition is Met with @while Tests Fail

Tell us what’s happening:

I am try in the Firefox and Chrome
in browser inspector (F12) all oOK, but tests fail!

What is wrong?

Also, I try { font-size:5*$x+px;}

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 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0.

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

Thank you for answer!
I do this, but, unfortunately, no result.
Chrome 67.0.3396.99 (Official build), (64 bit)

Solved, I made on another computer.

PS, Ctrl + F5 did not fix the problem

I moved to another computer to pass as well. I left a comment with my details on this thread.