animation.scss 303 B

1234567891011121314151617181920212223
  1. @keyframes slide-in {
  2. from {
  3. opacity: 0;
  4. transform: translateY(20px);
  5. }
  6. to {
  7. opacity: 1;
  8. transform: translateY(0px);
  9. }
  10. }
  11. @keyframes slide-in-from-top {
  12. from {
  13. opacity: 0;
  14. transform: translateY(-20px);
  15. }
  16. to {
  17. opacity: 1;
  18. transform: translateY(0px);
  19. }
  20. }