Version: 0.2.0
Getting started
Stormy is mixin-based, which means nothing is included unless you use it. However, since it's written with Sass you must also use it with Sass.
Requirements#
- Dart Sass
- Appropriate build setup
Stormy is guaranteed to work with Vite because it's our development server, it might break on other setups
Installation & usage#
- Install it using
npm i -D stormy-scss,yarn add -D stormy-scss, orpnpm i -D stormy-scss @useit in your Sass files:@use "stormy-scss";or@use "stormy-scss" as stormy;@includeyour mixins in your classes
Full example#
The rest of the docs will assume you used Stormy as @use "stormy-scss" as stormy;, and any submodules as @use "stormy-scss/<submodule>" as stormy-<submodule>;