Teradata / vantage-ui-template

Template for UI applications in Vantage
MIT License
185 stars 79 forks source link

feat(): update ui-template and add cypress #119

Closed christianmemije closed 4 years ago

christianmemije commented 4 years ago

Description

What's included?

Test Steps

Definition of Done

Animated Gif
christianmemije commented 4 years ago

Pasting the following code so it does not get it lost in case it useful in the future.

#pre-loader .teradata-logo .teradata-logo-letters path,
#pre-loader .teradata-logo .teradata-logo-period {
  stroke-dasharray: 1000;
  stroke-width: 4;
  animation-duration: 1.66s;
  animation-timing-function: ease-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

#pre-loader .teradata-logo .teradata-logo-letters path,
#pre-loader .teradata-logo .teradata-logo-period {
  animation-name: pre-loader-logo-animation;
}
.dark-theme #pre-loader .teradata-logo .teradata-logo-letters path,
.dark-theme #pre-loader .teradata-logo .teradata-logo-period {
  animation-name: pre-loader-logo-animation;
}
@keyframes pre-loader-logo-animation {
  from {
    stroke-dashoffset: 1000;
    fill: #fff0;
  }
  to {
    stroke-dashoffset: 0;
  }
}