// Animation keyframes for StyleClass directive @keyframes scalein { 0% { opacity: 0; transform: scaleY(0.8); transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1); } 100% { opacity: 1; transform: scaleY(1); } } @keyframes fadeout { 0% { opacity: 1; } 100% { opacity: 0; } } .animate-scalein { animation: scalein 0.15s linear; } .animate-fadeout { animation: fadeout 0.15s linear; }