This commit is contained in:
sairaj mote 2020-10-18 17:53:19 +05:30
parent be9505242d
commit b2eed2d7d8
5 changed files with 30 additions and 25 deletions

View File

@ -2095,6 +2095,7 @@ customElements.define('sm-popup', class extends HTMLElement {
this.popup.style.transform = 'translateY(100%)';
else
this.popup.style.transform = 'translateY(1rem)';
this.click()
this.popupContainer.classList.add('hide')
this.removeAttribute('open')
if (typeof this.popupStack !== 'undefined') {

View File

@ -1201,14 +1201,14 @@ sm-panel {
#success_art {
margin: 1rem 0;
height: 12rem;
width: 12rem;
height: 14rem;
width: 100%;
align-self: center;
}
#success_art circle {
transform-origin: center;
transform: scale(0.9);
animation: scale-up 1s forwards ease-out;
transform: scale(0.4);
animation: explode 1.6s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#success_art polygon {
transform-origin: center;
@ -1502,19 +1502,22 @@ sm-panel {
margin: 1.5rem;
}
@keyframes scale-up {
from {
transform: scale(0.9);
@keyframes explode {
0% {
transform: scale(0.4);
}
to {
transform: none;
80% {
transform: scale(1);
}
100% {
transform: scale(0.9);
}
}
@keyframes rotate-in-place {
from {
0% {
transform: rotate(-20deg);
}
to {
100% {
transform: none;
}
}

2
css/main.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -1244,13 +1244,13 @@ sm-panel{
#success_art{
margin: 1rem 0;
height: 12rem;
width: 12rem;
height: 14rem;
width: 100%;
align-self: center;
circle{
transform-origin: center;
transform: scale(0.9);
animation: scale-up 1s forwards ease-out;
transform: scale(0.4);
animation: explode 1.6s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
polygon{
transform-origin: center;
@ -1545,19 +1545,22 @@ sm-panel{
margin: 1.5rem;
}
}
@keyframes scale-up{
from{
transform: scale(0.9);
@keyframes explode{
0%{
transform: scale(0.4);
}
to{
transform: none;
80%{
transform: scale(1);
}
100%{
transform: scale(0.9);
}
}
@keyframes rotate-in-place{
from{
0%{
transform: rotate(-20deg);
}
to{
100%{
transform: none;
}
}

View File

@ -12209,8 +12209,6 @@
showPage('home_page', 'home_page_btn')
hideLoader()
show_payment_requests()
request_rupee_token()
withdraw_token_to_get_cash();