Skip to content

Instantly share code, notes, and snippets.

View Jeysef's full-sized avatar

Jeysef Jeysef

View GitHub Profile
@Jeysef
Jeysef / commit_msg.md
Last active December 1, 2023 13:56
commits

Commit Message Format

• 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

@Jeysef
Jeysef / mixins.scss
Last active November 13, 2023 13:37
mixins
@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 {