https://github.com/morevm/more-sass
The library of useful SCSS mixins and functions.
https://github.com/morevm/more-sass
more sass sass-functions sass-library sass-mixins
Last synced: 29 days ago
JSON representation
The library of useful SCSS mixins and functions.
- Host: GitHub
- URL: https://github.com/morevm/more-sass
- Owner: MorevM
- License: mit
- Created: 2021-10-16T17:29:43.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-30T19:20:16.000Z (over 2 years ago)
- Last Synced: 2025-02-01T02:22:29.262Z (5 months ago)
- Topics: more, sass, sass-functions, sass-library, sass-mixins
- Language: SCSS
- Homepage: https://morevm.github.io/more-sass/
- Size: 2.67 MB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README

[](https://opensource.org/licenses/MIT)



The library of useful SCSS mixins and functions.
## Installation
Using `npm`:
```bash
npm install more-sass
```Using `yarn`:
```bash
yarn add more-sass
```## Usage
You can import the entire library or only the necessary part of it - variables, mixins, functions, or only a specific group of functions:
```scss
// Import the entire library
@use 'more-sass' as more;// Import variables
@use 'more-sass/variables' as more-variables;// Import mixins
@use 'more-sass/mixins' as more-mixins;// Import functions
@use 'more-sass/functions' as more-functions;// Import a specific group of functions
@use 'more-sass/functions/string' as more-string;// Import a specific function in global namespace
@use 'more-sass/functions/string/str-split' as *;
```## Documentation
[See the documentation](https://morevm.github.io/more-sass/).