mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 16:18:09 -07:00
14 lines
200 B
SCSS
14 lines
200 B
SCSS
@mixin animation($value) {
|
|
-webkit-animation: $value;
|
|
animation: $value;
|
|
}
|
|
|
|
@mixin keyframes($name) {
|
|
@-webkit-keyframes #{$name} {
|
|
@content;
|
|
}
|
|
@keyframes #{$name} {
|
|
@content;
|
|
}
|
|
}
|