Added a shake animation on the title in welcome screen

This commit is contained in:
Manoj Vivek 2019-09-15 19:58:30 +05:30
parent fcd15456bd
commit 708f612d42
2 changed files with 25 additions and 1 deletions

View file

@ -11,6 +11,30 @@
font-weight: 600;
text-align: center;
margin-bottom: 50px;
animation: shake 0.6s ease-in-out;
}
@keyframes shake {
10%,
90% {
transform: translate3d(-1px, 0, 0);
}
20%,
80% {
transform: translate3d(4px, 0, 0);
}
30%,
50%,
70% {
transform: translate3d(-10px, 0, 0);
}
40%,
60% {
transform: translate3d(10px, 0, 0);
}
}
.subTitle {

View file

@ -54,7 +54,7 @@ export default class LicenseManager extends React.Component {
periodicPing = () => {
this.sendMessage('validate', {
licenseKey: getLicensekey(),
licenseKey: '123' + getLicensekey(),
});
};