Created
April 8, 2023 14:15
-
-
Save joekolade/06f897a46ac96861cf7e44b09a356f81 to your computer and use it in GitHub Desktop.
[Transition mixin]
This file contains 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
// Transitions | |
// | |
// | |
$transition-default-duration: ###0.3s###; | |
$transition-default-timing: ease-out; | |
$transition-default-delay: 0s; | |
@mixin transit($prop: all){ | |
transition: $prop $transition-default-duration $transition-default-timing $transition-default-delay; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment