Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(react-md): Simplify sass usage with:
@use 'react-md';
With latest `sass-loader` and `sass`, code can be updated to: ```diff -@import 'react-md/dist/mixins'; +@use 'react-md' as *; @include react-md-utils; ``` Note: If you override variables, do: ```diff -@import 'react-md/dist/mixins'; +@use 'react-md' as * with ( + // all $rmd-* variable overrides +); @include react-md-utils; ```
- Loading branch information