Skip to main content

SASS

This module extends the style tag to render the Sass styling language (reference).

Note that this tag is a module, which means that it loads an additional library when used.

<style type=sass>

$sunny: #fed62d;

body {
background-color: $sunny;
}

</style>