• build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) • ci: Changes to our Cl configuration files and scripts (examples: CircleCi, SauceLabs) • docs; Documentation only changes • feat A new feature • fix: A bug fix • perf. A code change that improves performance • refactor: A code change that neither fixes a bug nor adds a feature • test: Addin missi tests or correcti existi tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @mixin tr($props: all, $duration: $ss-tr-duration, $function: $ss-tr-function, $delay: null ) { | |
| $duration: _strip-unit($duration)*1ms; | |
| @if $delay { | |
| $delay: _strip-unit($delay)*1ms; | |
| } | |
| @if type-of($props) == list { | |
| $tr_values: (); | |
| @each $item in $props { |