drifte-sass-helpers

A library of mixins and plugins to help make sass dev a cinch

Usage no npm install needed!

<script type="module">
  import drifteSassHelpers from 'https://cdn.skypack.dev/drifte-sass-helpers';
</script>

README

SASS Helpers

Installation

npm install drifte-sass-helpers --save-dev

Usage

Update sass includePaths to include node_modules, then add the following import to your scss files:

@import "drifte-sass-helpers/css";

Use single modules with

@import "drifte-sass-helpers/css/flex";

VS Code Intellisense

Enable implicit autocomplete by installing SCSS IntelliSense and adding the following setting to settings.json:

  "scss.scannerExclude": [
    "**/.git",
    "**/node_modules/!(drifte-sass-helpers)",
    "**/bower_components"
  ]