Skip to content

v0.3.0

Compare
Choose a tag to compare
@nzbin nzbin released this 01 Dec 14:48
· 3 commits to master since this release

BREAKING CHANGES

  • renaming the source folder sass to scss

Features

  • rebuild with Dart Sass @use-based API.

    @use 'three-dots' with (
      $dot-width: 20px,
      $dot-height: 20px,
      ...
    );

    You can also import a single module and configuring it.

    @use 'three-dots/scss/variables' with (
      $dot-width: 20px,
      $dot-height: 20px,
      ...
    );
    
    @use 'three-dots/scss/dot-pulse';