Jetpack components base styles
npm install @automattic/jetpack-base-stylesBase SCSS utilities and variables for Jetpack.
Install the module
``bash`
npm install @automattic/jetpack-base-styles --save-dev
In your application's SCSS file, include styles like so:
`scss`
@use '@automattic/jetpack-base-styles/style';
To make that work with sass NPM modules without Webpack, you'd have to use loadPaths or includePaths:
`json``
{
"loadPaths": [ "node_modules" ]
}