ColorHighlighter icon indicating copy to clipboard operation
ColorHighlighter copied to clipboard

Sass Imports with Partials (without underscore prefix)

Open joeyhoer opened this issue 9 years ago • 0 comments

Imported file:

// filename: _variables.scss
$radish: red;

Importing file:

@import 'variables'; // This does not work :(
@import '_variables'; // This works!
.radish { color: $radish }

This is valid Sass.

joeyhoer avatar Apr 03 '16 19:04 joeyhoer