You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
318 B

.toastify {
position: fixed;
opacity: 0;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
cursor: pointer;
max-width: inherit;
z-index: 1000;
}
.toastify.on {
opacity: 1;
}
.toastify-center {
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
}
.toastify-top {
top: -150px;
}