@intouchgroup/utility-styles
v0.0.18
Published
Utility-first SCSS classes
Downloads
5
Readme
@intouchgroup/utility-styles
🧬 Fully configurable low level utility styles
Getting Started
Install the module in your project:
npm i @intouchgroup/utility-styles
Use the module in your SCSS:
@use '~@intouchgroup/utility-styles';
```<br><br>
3. Optionally configure the module:<br>
```scss
@use '~@intouchgroup/utility-styles' with (
// media breakpoints
$breakpoints: (
small: 480,
medium: 896,
large: 1200,
xlarge: 1920,
),
// brand colors
$colors: (
'blue': #1cb2a9,
'green': #b2d236,
'green-light': #a0ce4e,
),
// em-based increments for margin and padding
$spacing: 0.75,
);
```<br><br>