Issue with minimum font size during "Apply a Style Until a Condition is Met with @while" -challenge

Tell us what’s happening:
Can’t pass this challenge, because Chrome has a “minimum font size” -attribute that can’t go below 6px. You can check it here: chrome://settings/fonts?search=fonts

Had the minimum set for 12px, which also meant that I couldn’t pass the “Use @for to Create a Sass Loop” -challenge, before discovering the minimum font size -attribute.

In firefox, minimum font size was set at “none”, but still can’t pass the challenge.

Is there any way around this?

Your code so far


<style type='text/sass'>
  
  $i: 1;
  @while $i < 11 {
    .text-#{$i} {
        font-size: 5px * $i;
    }
    $i: $i + 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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 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/

try removing the spaces from your equations