SASS, Lesson 1-display to right not working?

Hey, as far as I can tell this code is ok. Nothing shows up on the display to the right. Not sure what’s going on here.

  **Your code so far**

<style type='text/scss'>
$text-color: red;

.header{
  text-align: center;
}
.blog-post, h2 {
  color: $text-color;
}
</style>

<h1 class="header">Learn Sass</h1>
<div class="blog-post">
<h2>Some random title</h2>
<p>This is a paragraph with some random text in it</p>
</div>
<div class="blog-post">
<h2>Header #2</h2>
<p>Here is some more random text.</p>
</div>
<div class="blog-post">
<h2>Here is another header</h2>
<p>Even more random text within a paragraph</p>
</div>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0

Challenge: Store Data with Sass Variables

Link to the challenge:

your code is OK, is working for me on chrome.

Must be a firefox issue

Yep, the SASS challenges are broken in Firefox right now. An issue has been opened.

Is there any way somebody could post a note into the first of those lessons so people doing them don’t waste hours trying to install SASS into their systems, etc. before finding this post? Lots of people don’t use Chrome for various reasons.

If it helps, it turns out that those tutorials actually do work in Safari, just not the current version of Firefox.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.