mirror of
https://github.com/penpot/penpot.git
synced 2025-01-22 14:39:45 -05:00
22 lines
699 B
SCSS
22 lines
699 B
SCSS
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
//
|
|
// Copyright (c) KALEIDOS INC
|
|
|
|
@mixin animation($delay, $duration, $animation) {
|
|
-webkit-animation-delay: $delay;
|
|
-webkit-animation-duration: $duration;
|
|
-webkit-animation-name: $animation;
|
|
-webkit-animation-fill-mode: both;
|
|
|
|
-moz-animation-delay: $delay;
|
|
-moz-animation-duration: $duration;
|
|
-moz-animation-name: $animation;
|
|
-moz-animation-fill-mode: both;
|
|
|
|
animation-delay: $delay;
|
|
animation-duration: $duration;
|
|
animation-name: $animation;
|
|
animation-fill-mode: both;
|
|
}
|