ungic-sass-helpers

Dart SASS module which contains a set of helper methods.


Keywords
sass, tools, helpers
License
ISC
Install
npm install ungic-sass-helpers@1.0.0

Documentation

ungic-sass-helpers

ungic-sass-helpers is a library that provides a set of functions and mixins from the core of the UNGIC framework, adapted for use with Dart SASS 3.0.

This package is based on the ungic.component.core module, with adjustments to ensure compatibility with Dart SASS syntax and features.

Installation

To use the library in your project, follow these steps:

  1. Install the package via your package manager (if available) or download the source files.
  2. Import ungic-sass-helpers into your main SASS file:
@use 'ungic-sass-helpers' with (
  $config: (
    cid: "app",
  )
)
  1. Use the functions and mixins in your stylesheets.
@use 'ungic-sass-helpers' as *;

@include this {
    background-color: red;
    .btn {
        @include prev('.hide-btn') {
            @debug &
        }
    }
}

Documentation

See the full documentation for more information on the functions and mixins available in the library.

Author

unbywyd