bitwarden-estensione-browser/libs/components/src/dialog/animations.ts

12 lines
355 B
TypeScript

import { style, animate, trigger, transition, group } from "@angular/animations";
export const fadeIn = trigger("fadeIn", [
transition(":enter", [
style({ opacity: 0, transform: "translateY(-50px)" }),
group([
animate("0.15s linear", style({ opacity: 1 })),
animate("0.3s ease-out", style({ transform: "none" })),
]),
]),
]);