SCSS / Demo

Differences

SCSS vs. Sass ↔️

SCSS and Sass are two syntax flavors for the same concept. The difference between them is UI.

.scss extension

.sass extension


Here’s an example of SCSS:

body {
  background-color:#000;
  color:#fff;
}

Below is an example of Sass.

body
  background-color:#000;
  color:#fff;


It’s up to you to choose one. Don’t stress on the decision — you can easily convert SCSS to Sass and vice versa with the sass-convert tool.

- Source: LogRocket (Blog)