feat: Show refresh prompt on network disconnect (#3165)

Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
Dwiferdio Seagal Putra
2021-10-12 13:27:36 +07:00
committed by GitHub
parent 5237e51f2c
commit c1d68cc8ae
4 changed files with 148 additions and 0 deletions

View File

@@ -93,3 +93,17 @@
/* .slide-fade-leave-active for <2.1.8 */ {
opacity: 0;
}
.network-notification-fade-enter-active {
transition: all .1s $ease-in-sine;
}
.network-notification-fade-leave-active {
transition: all .1s $ease-out-sine;
}
.network-notification-fade-enter,
.network-notification-fade-leave-to {
transform: translateY(-$space-small);
opacity: 0;
}