RoyAalekh commited on
Commit
cf118c1
·
1 Parent(s): 27036e7

Fix login page zoom animation on refresh - remove scaling effects

Browse files
Files changed (1) hide show
  1. static/css/design-system.css +4 -2
static/css/design-system.css CHANGED
@@ -700,16 +700,18 @@ a:focus {
700
  width: 100%;
701
  max-width: 420px;
702
  animation: tt-slideIn 0.6s ease-out;
 
 
703
  }
704
 
705
  @keyframes tt-slideIn {
706
  from {
707
  opacity: 0;
708
- transform: translateY(30px) scale(0.95);
709
  }
710
  to {
711
  opacity: 1;
712
- transform: translateY(0) scale(1);
713
  }
714
  }
715
 
 
700
  width: 100%;
701
  max-width: 420px;
702
  animation: tt-slideIn 0.6s ease-out;
703
+ animation-fill-mode: both;
704
+ animation-iteration-count: 1;
705
  }
706
 
707
  @keyframes tt-slideIn {
708
  from {
709
  opacity: 0;
710
+ transform: translateY(30px);
711
  }
712
  to {
713
  opacity: 1;
714
+ transform: translateY(0);
715
  }
716
  }
717