mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00
13 lines
199 B
SCSS
13 lines
199 B
SCSS
@mixin animation($value) {
|
|
-webkit-animation: $value;
|
|
animation: $value;
|
|
}
|
|
|
|
@mixin keyframes($name) {
|
|
@-webkit-keyframes #{$name} {
|
|
@content;
|
|
}
|
|
@keyframes #{$name} {
|
|
@content;
|
|
}
|
|
} |